diff --git a/Source/Bind/CSharpSpecWriter.cs b/Source/Bind/CSharpSpecWriter.cs index 96b90bb0..cb9ab8f9 100644 --- a/Source/Bind/CSharpSpecWriter.cs +++ b/Source/Bind/CSharpSpecWriter.cs @@ -252,13 +252,14 @@ namespace Bind sw.WriteLine("[Obsolete(\"Deprecated in OpenGL {0}\")]", f.DeprecatedVersion); } - if (!f.CLSCompliant) - { - sw.WriteLine("[System.CLSCompliant(false)]"); - } - sw.WriteLine("[AutoGenerated(Category = \"{0}\", Version = \"{1}\", EntryPoint = \"{2}\")]", f.Category, f.Version, Settings.FunctionPrefix + f.WrappedDelegate.EntryPoint); + + if (!f.CLSCompliant) + { + sw.WriteLine("[CLSCompliant(false)]"); + } + sw.WriteLine("public static {0} {{ throw new NotImplementedException(); }}", GetDeclarationString(f, Settings.Compatibility)); } @@ -421,7 +422,6 @@ namespace Bind } } - int current = 0; foreach (Enum @enum in enums.Values) { if (!Settings.IsEnabled(Settings.Legacy.NoDocumentation)) diff --git a/Source/Bind/FuncProcessor.cs b/Source/Bind/FuncProcessor.cs index 0e22710a..82a7c634 100644 --- a/Source/Bind/FuncProcessor.cs +++ b/Source/Bind/FuncProcessor.cs @@ -1,4 +1,4 @@ -#region License +#region License // // The Open Toolkit Library License // @@ -1034,9 +1034,9 @@ namespace Bind } if (parameter.WrapperType == 0 || - (parameter.WrapperType & WrapperTypes.ConvenienceArrayType) != 0 || - (parameter.WrapperType & WrapperTypes.ConvenienceReturnType) != 0 || - (parameter.WrapperType & WrapperTypes.ConvenienceArrayReturnType) != 0) + (parameter.WrapperType & WrapperTypes.ConvenienceArrayType) != 0 || + (parameter.WrapperType & WrapperTypes.ConvenienceReturnType) != 0 || + (parameter.WrapperType & WrapperTypes.ConvenienceArrayReturnType) != 0) { // We don't need to do anything, just add this function directly // to the list of wrappers. @@ -1091,6 +1091,11 @@ namespace Bind if ((parameter.WrapperType & WrapperTypes.GenericParameter) != 0) { generic_wrapper = generic_wrapper ?? new Function(wrapper); + if (arity > 0) + { + // Overloading on array arity is not CLS-compliant + generic_wrapper.CLSCompliant = false; + } var p = generic_wrapper.Parameters[i]; p.Reference = false; diff --git a/Source/Bind/Structures/Delegate.cs b/Source/Bind/Structures/Delegate.cs index 5c87bfad..5c072d1e 100644 --- a/Source/Bind/Structures/Delegate.cs +++ b/Source/Bind/Structures/Delegate.cs @@ -53,6 +53,7 @@ namespace Bind.Structures DeprecatedVersion = d.DeprecatedVersion; EntryPoint = d.EntryPoint; Obsolete = d.Obsolete; + CLSCompliant = d.CLSCompliant; Slot = d.Slot; } diff --git a/Source/Bind/Structures/Function.cs b/Source/Bind/Structures/Function.cs index 18d88a00..7512f7be 100644 --- a/Source/Bind/Structures/Function.cs +++ b/Source/Bind/Structures/Function.cs @@ -37,6 +37,7 @@ namespace Bind.Structures ReturnType = new Type(f.ReturnType); TrimmedName = f.TrimmedName; Obsolete = f.Obsolete; + CLSCompliant = f.CLSCompliant; Body.AddRange(f.Body); } diff --git a/Source/OpenTK/Audio/OpenAL/Alc/Alc.cs b/Source/OpenTK/Audio/OpenAL/Alc/Alc.cs index ca58d089..38767a15 100644 --- a/Source/OpenTK/Audio/OpenAL/Alc/Alc.cs +++ b/Source/OpenTK/Audio/OpenAL/Alc/Alc.cs @@ -409,6 +409,7 @@ namespace OpenTK.Audio.OpenAL /// a pointer to a capture device. /// a buffer, which must be large enough to accommodate the number of samples. /// the number of samples to be retrieved. + [CLSCompliant(false)] public static void CaptureSamples(IntPtr device, T[] buffer, int samples) where T : struct { @@ -419,6 +420,7 @@ namespace OpenTK.Audio.OpenAL /// a pointer to a capture device. /// a buffer, which must be large enough to accommodate the number of samples. /// the number of samples to be retrieved. + [CLSCompliant(false)] public static void CaptureSamples(IntPtr device, T[,] buffer, int samples) where T : struct { @@ -429,6 +431,7 @@ namespace OpenTK.Audio.OpenAL /// a pointer to a capture device. /// a buffer, which must be large enough to accommodate the number of samples. /// the number of samples to be retrieved. + [CLSCompliant(false)] public static void CaptureSamples(IntPtr device, T[, ,] buffer, int samples) where T : struct { diff --git a/Source/OpenTK/Graphics/ES11/ES11.cs b/Source/OpenTK/Graphics/ES11/ES11.cs index 98732a52..5576db93 100644 --- a/Source/OpenTK/Graphics/ES11/ES11.cs +++ b/Source/OpenTK/Graphics/ES11/ES11.cs @@ -451,6 +451,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -471,17 +472,18 @@ namespace OpenTK.Graphics.ES11 /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_copy_texture_levels] [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] + [CLSCompliant(false)] public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } /// [requires: APPLE_copy_texture_levels] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] + [CLSCompliant(false)] public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -509,6 +511,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] + [CLSCompliant(false)] public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, Int32 flags) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -524,25 +527,28 @@ namespace OpenTK.Graphics.ES11 /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero. flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] + [CLSCompliant(false)] public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, UInt32 flags) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -574,6 +580,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -605,6 +612,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -635,8 +643,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of an array to receive the values of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -704,6 +712,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -724,8 +733,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } } @@ -804,6 +813,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES11.All target, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -819,8 +829,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES11.All target, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -838,6 +848,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES11.All target, Int32 texture) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -854,8 +865,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES11.All target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -872,6 +883,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES11.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -887,8 +899,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES11.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -984,6 +996,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.ES11.All usage) where T2 : struct { throw new NotImplementedException(); } @@ -1012,6 +1025,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct { throw new NotImplementedException(); } @@ -1040,6 +1054,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct { throw new NotImplementedException(); } @@ -1122,6 +1137,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -1150,6 +1166,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -1178,6 +1195,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -1243,19 +1261,6 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use ClearMask overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] - public static void Clear(Int32 mask) { throw new NotImplementedException(); } - - /// [requires: v1.0] - /// Clear buffers to preset values - /// - /// - /// - /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT, and GL_STENCIL_BUFFER_BIT. - /// - /// - [Obsolete("Use ClearMask overload instead")] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] public static void Clear(UInt32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -1336,6 +1341,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All p, Single[] eqn) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -1352,6 +1358,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All p, ref Single eqn) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -1367,21 +1374,23 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] + [CLSCompliant(false)] public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, Single* eqn) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")] + [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, int[] equation) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")] + [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, ref int equation) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")] + [CLSCompliant(false)] public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, int* equation) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -1488,6 +1497,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -1517,6 +1527,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -1546,6 +1557,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -1629,6 +1641,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -1657,6 +1670,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -1685,6 +1699,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -1809,6 +1824,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -1858,6 +1874,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -1907,6 +1924,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -2050,6 +2068,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -2098,6 +2117,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -2146,6 +2166,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -2300,6 +2321,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -2354,6 +2376,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -2408,6 +2431,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -2566,6 +2590,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -2619,6 +2644,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -2672,6 +2698,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -2932,6 +2959,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(Int32 buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -2947,8 +2975,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -2965,6 +2993,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -2981,6 +3010,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref Int32 buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -2996,8 +3026,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, Int32* buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3013,8 +3043,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3030,8 +3060,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3047,8 +3077,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3065,6 +3095,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(Int32 textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3080,8 +3111,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(UInt32 textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3098,6 +3129,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, Int32[] textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3114,6 +3146,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3129,8 +3162,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, Int32* textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3146,8 +3179,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3163,8 +3196,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3180,8 +3213,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, UInt32* textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3373,6 +3406,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -3402,6 +3436,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -3431,6 +3466,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -3516,6 +3552,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -3545,6 +3582,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -3574,6 +3612,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -3657,6 +3696,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -3685,6 +3725,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -3713,6 +3754,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -3861,6 +3903,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")] + [CLSCompliant(false)] public static void Fog(OpenTK.Graphics.ES11.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3877,8 +3920,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")] + [CLSCompliant(false)] public static unsafe void Fog(OpenTK.Graphics.ES11.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3895,6 +3938,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")] + [CLSCompliant(false)] public static void Fog(OpenTK.Graphics.ES11.FogParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3910,8 +3954,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that pname will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")] + [CLSCompliant(false)] public static unsafe void Fog(OpenTK.Graphics.ES11.FogParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3920,11 +3964,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogxv")] + [CLSCompliant(false)] public static void Fogx(OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogxv")] + [CLSCompliant(false)] public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -3989,6 +4034,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static Int32 GenBuffer() { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4005,6 +4051,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4021,6 +4068,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4036,8 +4084,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4053,8 +4101,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4070,8 +4118,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4087,8 +4135,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4105,6 +4153,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static Int32 GenTexture() { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4121,6 +4170,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4137,6 +4187,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4152,8 +4203,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4169,8 +4220,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4186,8 +4237,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4203,46 +4254,52 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static bool GetBoolean(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static bool GetBoolean(OpenTK.Graphics.ES11.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4264,6 +4321,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4285,6 +4343,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4305,8 +4364,8 @@ namespace OpenTK.Graphics.ES11 /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4323,6 +4382,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] + [CLSCompliant(false)] public static Single GetClipPlane(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4339,6 +4399,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] + [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute] Single[] equation) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4355,6 +4416,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] + [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute] out Single equation) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4370,25 +4432,28 @@ namespace OpenTK.Graphics.ES11 /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] + [CLSCompliant(false)] public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute] Single* equation) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] + [CLSCompliant(false)] public static int GetClipPlanex(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] + [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] int[] equation) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] + [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] out int equation) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] + [CLSCompliant(false)] public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] int* equation) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4399,95 +4464,110 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] + [CLSCompliant(false)] public static int GetFixed(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] + [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] + [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] + [CLSCompliant(false)] public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static Single GetFloat(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static Single GetFloat(OpenTK.Graphics.ES11.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static Int32 GetInteger(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static Int32 GetInteger(OpenTK.Graphics.ES11.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v1.0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4510,6 +4590,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] + [CLSCompliant(false)] public static void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4532,6 +4613,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] + [CLSCompliant(false)] public static void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4553,8 +4635,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] + [CLSCompliant(false)] public static unsafe void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4576,6 +4658,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] + [CLSCompliant(false)] public static void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4597,6 +4680,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] + [CLSCompliant(false)] public static void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4617,21 +4701,23 @@ namespace OpenTK.Graphics.ES11 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] + [CLSCompliant(false)] public static unsafe void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] + [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] + [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] + [CLSCompliant(false)] public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4654,6 +4740,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] + [CLSCompliant(false)] public static void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4676,6 +4763,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] + [CLSCompliant(false)] public static void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4697,8 +4785,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] + [CLSCompliant(false)] public static unsafe void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4720,6 +4808,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] + [CLSCompliant(false)] public static void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4741,6 +4830,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] + [CLSCompliant(false)] public static void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4761,34 +4851,38 @@ namespace OpenTK.Graphics.ES11 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] + [CLSCompliant(false)] public static unsafe void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] + [CLSCompliant(false)] public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] + [CLSCompliant(false)] public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] + [CLSCompliant(false)] public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] + [CLSCompliant(false)] public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute] int[] values) { throw new NotImplementedException(); } /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] + [CLSCompliant(false)] public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute] out int values) { throw new NotImplementedException(); } /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] + [CLSCompliant(false)] public static unsafe void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute] int* values) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4823,6 +4917,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } @@ -4842,6 +4937,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -4861,6 +4957,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -4914,6 +5011,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } @@ -4932,6 +5030,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -4950,6 +5049,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -5025,6 +5125,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5047,6 +5148,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5068,8 +5170,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] + [CLSCompliant(false)] public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5091,6 +5193,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5112,6 +5215,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5132,8 +5236,8 @@ namespace OpenTK.Graphics.ES11 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] + [CLSCompliant(false)] public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5156,6 +5260,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5178,6 +5283,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5199,8 +5305,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] + [CLSCompliant(false)] public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5222,6 +5328,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5243,6 +5350,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5263,21 +5371,23 @@ namespace OpenTK.Graphics.ES11 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] + [CLSCompliant(false)] public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] + [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] + [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] + [CLSCompliant(false)] public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5300,6 +5410,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5322,6 +5433,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5343,8 +5455,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5366,6 +5478,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5387,6 +5500,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5407,8 +5521,8 @@ namespace OpenTK.Graphics.ES11 /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5431,6 +5545,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5453,6 +5568,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5474,8 +5590,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5497,6 +5613,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5518,6 +5635,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5538,21 +5656,23 @@ namespace OpenTK.Graphics.ES11 /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] + [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] + [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] + [CLSCompliant(false)] public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5597,6 +5717,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5607,8 +5728,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a value that may be the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5653,6 +5774,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5663,8 +5785,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a value that may be the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5730,6 +5852,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")] + [CLSCompliant(false)] public static void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5751,8 +5874,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")] + [CLSCompliant(false)] public static unsafe void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5774,6 +5897,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")] + [CLSCompliant(false)] public static void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5794,8 +5918,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that parameter pname of light source light will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")] + [CLSCompliant(false)] public static unsafe void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5846,6 +5970,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] + [CLSCompliant(false)] public static void LightModel(OpenTK.Graphics.ES11.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5862,8 +5987,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] + [CLSCompliant(false)] public static unsafe void LightModel(OpenTK.Graphics.ES11.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5880,6 +6005,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] + [CLSCompliant(false)] public static void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5895,8 +6021,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that param will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] + [CLSCompliant(false)] public static unsafe void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5905,11 +6031,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] + [CLSCompliant(false)] public static void LightModelx(OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] + [CLSCompliant(false)] public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5918,11 +6045,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")] + [CLSCompliant(false)] public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")] + [CLSCompliant(false)] public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5955,6 +6083,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] + [CLSCompliant(false)] public static void LoadMatrix(Single[] m) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5966,6 +6095,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] + [CLSCompliant(false)] public static void LoadMatrix(ref Single m) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5976,21 +6106,23 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 column-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] + [CLSCompliant(false)] public static unsafe void LoadMatrix(Single* m) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")] + [CLSCompliant(false)] public static void LoadMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")] + [CLSCompliant(false)] public static void LoadMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")] + [CLSCompliant(false)] public static unsafe void LoadMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6079,6 +6211,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] + [CLSCompliant(false)] public static void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6100,8 +6233,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] + [CLSCompliant(false)] public static unsafe void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6123,6 +6256,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] + [CLSCompliant(false)] public static void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6143,8 +6277,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that parameter GL_SHININESS will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] + [CLSCompliant(false)] public static unsafe void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6153,11 +6287,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialxv")] + [CLSCompliant(false)] public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialxv")] + [CLSCompliant(false)] public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6229,6 +6364,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] + [CLSCompliant(false)] public static void MultMatrix(Single[] m) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6240,6 +6376,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] + [CLSCompliant(false)] public static void MultMatrix(ref Single m) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6250,21 +6387,23 @@ namespace OpenTK.Graphics.ES11 /// Points to 16 consecutive values that are used as the elements of a 4 times 4 column-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] + [CLSCompliant(false)] public static unsafe void MultMatrix(Single* m) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")] + [CLSCompliant(false)] public static void MultMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")] + [CLSCompliant(false)] public static void MultMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")] + [CLSCompliant(false)] public static unsafe void MultMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6327,6 +6466,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -6351,6 +6491,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -6375,6 +6516,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -6443,6 +6585,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -6466,6 +6609,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -6489,6 +6633,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -6543,15 +6688,17 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] + [CLSCompliant(false)] public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, int[] values) { throw new NotImplementedException(); } /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] + [CLSCompliant(false)] public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, ref int values) { throw new NotImplementedException(); } /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] + [CLSCompliant(false)] public static unsafe void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, int* values) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6631,6 +6778,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterfv")] + [CLSCompliant(false)] public static void PointParameter(OpenTK.Graphics.ES11.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6651,8 +6799,8 @@ namespace OpenTK.Graphics.ES11 /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterfv")] + [CLSCompliant(false)] public static unsafe void PointParameter(OpenTK.Graphics.ES11.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6661,11 +6809,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterxv")] + [CLSCompliant(false)] public static void PointParameterx(OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterxv")] + [CLSCompliant(false)] public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6775,6 +6924,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -6809,6 +6959,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -6843,6 +6994,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -6941,6 +7093,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -6974,6 +7127,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -7007,6 +7161,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -7158,6 +7313,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7179,8 +7335,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7202,6 +7358,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES11.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7222,8 +7379,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES11.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7235,6 +7392,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7245,8 +7403,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7344,6 +7502,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -7373,6 +7532,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -7402,6 +7562,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -7485,6 +7646,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -7513,6 +7675,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -7541,6 +7704,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -7636,6 +7800,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] + [CLSCompliant(false)] public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7657,8 +7822,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] + [CLSCompliant(false)] public static unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7680,6 +7845,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] + [CLSCompliant(false)] public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7700,8 +7866,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] + [CLSCompliant(false)] public static unsafe void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7767,6 +7933,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] + [CLSCompliant(false)] public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7788,8 +7955,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] + [CLSCompliant(false)] public static unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7811,6 +7978,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] + [CLSCompliant(false)] public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7831,8 +7999,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] + [CLSCompliant(false)] public static unsafe void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7841,11 +8009,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")] + [CLSCompliant(false)] public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")] + [CLSCompliant(false)] public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -7950,6 +8119,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -8004,6 +8174,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -8058,6 +8229,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -8216,6 +8388,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -8269,6 +8442,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -8322,6 +8496,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -8466,6 +8641,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -8495,8 +8671,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -8526,6 +8702,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -8554,8 +8731,8 @@ namespace OpenTK.Graphics.ES11 /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -8645,6 +8822,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -8674,8 +8852,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -8705,6 +8883,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -8733,8 +8912,8 @@ namespace OpenTK.Graphics.ES11 /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -8743,11 +8922,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")] + [CLSCompliant(false)] public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")] + [CLSCompliant(false)] public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -8852,6 +9032,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -8906,6 +9087,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -8960,6 +9142,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -9118,6 +9301,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -9171,6 +9355,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -9224,6 +9409,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -9348,6 +9534,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -9377,6 +9564,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -9406,6 +9594,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -9489,6 +9678,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -9517,6 +9707,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -9545,6 +9736,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -9630,15 +9822,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: EXT_discard_framebuffer] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] + [CLSCompliant(false)] public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, OpenTK.Graphics.ES11.All[] attachments) { throw new NotImplementedException(); } /// [requires: EXT_discard_framebuffer] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] + [CLSCompliant(false)] public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, ref OpenTK.Graphics.ES11.All attachments) { throw new NotImplementedException(); } /// [requires: EXT_discard_framebuffer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] + [CLSCompliant(false)] public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, OpenTK.Graphics.ES11.All* attachments) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -9664,11 +9858,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: EXT_multisampled_render_to_texture] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: EXT_multisampled_render_to_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: EXT_robustness] @@ -9677,58 +9872,62 @@ namespace OpenTK.Graphics.ES11 /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -9755,6 +9954,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -9780,8 +9980,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a combination of access flags indicating the desired access to the range. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -9809,6 +10009,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -9836,6 +10037,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -9862,8 +10064,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -9890,6 +10092,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -9916,6 +10119,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -9941,8 +10145,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the size of the first and count /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -9975,6 +10179,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32[] count, OpenTK.Graphics.ES11.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -10007,6 +10212,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10041,6 +10247,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10075,6 +10282,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10109,6 +10317,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10143,6 +10352,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, ref Int32 count, OpenTK.Graphics.ES11.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -10175,6 +10385,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10209,6 +10420,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10243,6 +10455,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10277,6 +10490,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10310,8 +10524,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32* count, OpenTK.Graphics.ES11.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -10343,8 +10557,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10378,8 +10592,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10413,8 +10627,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10448,8 +10662,8 @@ namespace OpenTK.Graphics.ES11 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10483,6 +10697,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES11.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -10514,6 +10729,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10547,6 +10763,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10580,6 +10797,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10613,6 +10831,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10646,6 +10865,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES11.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -10677,6 +10897,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10710,6 +10931,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10743,6 +10965,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10776,6 +10999,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10808,8 +11032,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES11.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -10840,8 +11064,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10874,8 +11098,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10908,8 +11132,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10942,8 +11166,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -10954,18 +11178,21 @@ namespace OpenTK.Graphics.ES11 /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -11102,29 +11329,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: EXT_texture_storage] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } } @@ -11145,6 +11375,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All p, Single[] eqn) { throw new NotImplementedException(); } /// [requires: IMG_user_clip_plane] @@ -11161,6 +11392,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All p, ref Single eqn) { throw new NotImplementedException(); } /// [requires: IMG_user_clip_plane] @@ -11176,30 +11408,33 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] + [CLSCompliant(false)] public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, Single* eqn) { throw new NotImplementedException(); } /// [requires: IMG_user_clip_plane] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] + [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All p, int[] eqn) { throw new NotImplementedException(); } /// [requires: IMG_user_clip_plane] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] + [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All p, ref int eqn) { throw new NotImplementedException(); } /// [requires: IMG_user_clip_plane] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] + [CLSCompliant(false)] public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All p, int* eqn) { throw new NotImplementedException(); } /// [requires: IMG_multisampled_render_to_texture] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: IMG_multisampled_render_to_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: IMG_multisampled_render_to_texture] @@ -11239,135 +11474,147 @@ namespace OpenTK.Graphics.ES11 { /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFence(Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFence(UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, Int32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, Int32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, UInt32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, UInt32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] + [CLSCompliant(false)] public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] + [CLSCompliant(false)] public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static Int32 GenFence() { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] Int32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] Int32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] UInt32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] UInt32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] + [CLSCompliant(false)] public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] + [CLSCompliant(false)] public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] + [CLSCompliant(false)] public static void SetFence(Int32 fence, OpenTK.Graphics.ES11.All condition) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] + [CLSCompliant(false)] public static void SetFence(UInt32 fence, OpenTK.Graphics.ES11.All condition) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] + [CLSCompliant(false)] public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] + [CLSCompliant(false)] public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } } @@ -11396,6 +11643,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11411,8 +11659,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the name of the framebuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11429,6 +11677,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11444,8 +11693,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the name of the renderbuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -11457,6 +11706,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] + [CLSCompliant(false)] public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -11467,21 +11717,23 @@ namespace OpenTK.Graphics.ES11 /// Specifies the name of the vertex array to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] + [CLSCompliant(false)] public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] + [CLSCompliant(false)] public static void Bitmapx(Int32 width, Int32 height, int xorig, int yorig, int xmove, int ymove, Byte[] bitmap) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] + [CLSCompliant(false)] public static void Bitmapx(Int32 width, Int32 height, int xorig, int yorig, int xmove, int ymove, ref Byte bitmap) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] + [CLSCompliant(false)] public static unsafe void Bitmapx(Int32 width, Int32 height, int xorig, int yorig, int xmove, int ymove, Byte* bitmap) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -11604,6 +11856,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All plane, Single[] equation) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -11620,6 +11873,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All plane, ref Single equation) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -11635,21 +11889,23 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] + [CLSCompliant(false)] public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All plane, Single* equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] + [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, int[] equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] + [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, ref int equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] + [CLSCompliant(false)] public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, int* equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -11658,15 +11914,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] + [CLSCompliant(false)] public static void Color3x(int[] components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] + [CLSCompliant(false)] public static void Color3x(ref int components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] + [CLSCompliant(false)] public static unsafe void Color3x(int* components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -11675,15 +11933,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] + [CLSCompliant(false)] public static void Color4x(int[] components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] + [CLSCompliant(false)] public static void Color4x(ref int components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] + [CLSCompliant(false)] public static unsafe void Color4x(int* components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -11692,29 +11952,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] + [CLSCompliant(false)] public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_matrix_palette] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixOES")] + [CLSCompliant(false)] public static void CurrentPaletteMatrix(Int32 matrixpaletteindex) { throw new NotImplementedException(); } /// [requires: OES_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixOES")] + [CLSCompliant(false)] public static void CurrentPaletteMatrix(UInt32 matrixpaletteindex) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] + [CLSCompliant(false)] public static void DeleteFramebuffer(Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] + [CLSCompliant(false)] public static void DeleteFramebuffer(UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11731,6 +11994,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11747,6 +12011,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11762,8 +12027,8 @@ namespace OpenTK.Graphics.ES11 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11779,8 +12044,8 @@ namespace OpenTK.Graphics.ES11 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11796,8 +12061,8 @@ namespace OpenTK.Graphics.ES11 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11813,17 +12078,18 @@ namespace OpenTK.Graphics.ES11 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11840,6 +12106,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11856,6 +12123,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11871,8 +12139,8 @@ namespace OpenTK.Graphics.ES11 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11888,8 +12156,8 @@ namespace OpenTK.Graphics.ES11 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11905,8 +12173,8 @@ namespace OpenTK.Graphics.ES11 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -11922,17 +12190,18 @@ namespace OpenTK.Graphics.ES11 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArray(Int32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArray(UInt32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -11949,6 +12218,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, Int32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -11965,6 +12235,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref Int32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -11980,8 +12251,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, Int32* arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -11997,8 +12268,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -12014,8 +12285,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref UInt32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -12031,8 +12302,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -12061,15 +12332,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_draw_texture] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")] + [CLSCompliant(false)] public static void DrawTex(Single[] coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")] + [CLSCompliant(false)] public static void DrawTex(ref Single coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")] + [CLSCompliant(false)] public static unsafe void DrawTex(Single* coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] @@ -12078,15 +12351,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_draw_texture] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")] + [CLSCompliant(false)] public static void DrawTex(Int32[] coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")] + [CLSCompliant(false)] public static void DrawTex(ref Int32 coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")] + [CLSCompliant(false)] public static unsafe void DrawTex(Int32* coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] @@ -12095,15 +12370,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_draw_texture] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")] + [CLSCompliant(false)] public static void DrawTex(Int16[] coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")] + [CLSCompliant(false)] public static void DrawTex(ref Int16 coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")] + [CLSCompliant(false)] public static unsafe void DrawTex(Int16* coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] @@ -12112,15 +12389,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_draw_texture] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")] + [CLSCompliant(false)] public static void DrawTexx(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")] + [CLSCompliant(false)] public static void DrawTexx(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_draw_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")] + [CLSCompliant(false)] public static unsafe void DrawTexx(int* coords) { throw new NotImplementedException(); } /// [requires: OES_EGL_image] @@ -12136,8 +12415,8 @@ namespace OpenTK.Graphics.ES11 public static void EvalCoord1x(int u) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xvOES")] + [CLSCompliant(false)] public static unsafe void EvalCoord1x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -12146,28 +12425,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] + [CLSCompliant(false)] public static void EvalCoord2x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] + [CLSCompliant(false)] public static void EvalCoord2x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] + [CLSCompliant(false)] public static unsafe void EvalCoord2x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] + [CLSCompliant(false)] public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, int[] buffer) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] + [CLSCompliant(false)] public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, ref int buffer) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] + [CLSCompliant(false)] public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, int* buffer) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -12176,11 +12459,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] + [CLSCompliant(false)] public static void Fogx(OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] + [CLSCompliant(false)] public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12207,6 +12491,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12232,17 +12517,18 @@ namespace OpenTK.Graphics.ES11 /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -12283,6 +12569,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_framebuffer_object] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] + [CLSCompliant(false)] public static Int32 GenFramebuffer() { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12299,6 +12586,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12315,6 +12603,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12330,8 +12619,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12347,8 +12636,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12364,8 +12653,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12381,12 +12670,13 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] + [CLSCompliant(false)] public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12403,6 +12693,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12419,6 +12710,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12434,8 +12726,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12451,8 +12743,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12468,8 +12760,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12485,12 +12777,13 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static Int32 GenVertexArray() { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -12507,6 +12800,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -12523,6 +12817,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -12538,8 +12833,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -12555,8 +12850,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -12572,8 +12867,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -12589,8 +12884,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] @@ -12599,18 +12894,21 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_mapbuffer] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -12635,6 +12933,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] + [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute] Single[] equation) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -12651,6 +12950,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] + [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute] out Single equation) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -12666,51 +12966,58 @@ namespace OpenTK.Graphics.ES11 /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] + [CLSCompliant(false)] public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute] Single* equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] + [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] int[] equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] + [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] out int equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] + [CLSCompliant(false)] public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] int* equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] + [CLSCompliant(false)] public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] + [CLSCompliant(false)] public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] public static int GetFixed(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12737,6 +13044,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12763,6 +13071,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12788,47 +13097,53 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of a variable receive the value of pname for attachment. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] + [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] + [CLSCompliant(false)] public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] + [CLSCompliant(false)] public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] + [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] + [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] + [CLSCompliant(false)] public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] + [CLSCompliant(false)] public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute] int[] v) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] + [CLSCompliant(false)] public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute] out int v) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] + [CLSCompliant(false)] public static unsafe void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute] int* v) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -12837,11 +13152,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] + [CLSCompliant(false)] public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] + [CLSCompliant(false)] public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12863,6 +13179,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12884,6 +13201,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -12904,21 +13222,23 @@ namespace OpenTK.Graphics.ES11 /// Specifies the address of an array to receive the value of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] + [CLSCompliant(false)] public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] + [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] + [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] + [CLSCompliant(false)] public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -12940,6 +13260,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -12961,6 +13282,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -12981,8 +13303,8 @@ namespace OpenTK.Graphics.ES11 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] + [CLSCompliant(false)] public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -13004,6 +13326,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -13025,6 +13348,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -13045,47 +13369,53 @@ namespace OpenTK.Graphics.ES11 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] + [CLSCompliant(false)] public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] + [CLSCompliant(false)] public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] + [CLSCompliant(false)] public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] + [CLSCompliant(false)] public static unsafe void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] + [CLSCompliant(false)] public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] + [CLSCompliant(false)] public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] + [CLSCompliant(false)] public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] + [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] + [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] + [CLSCompliant(false)] public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13093,8 +13423,8 @@ namespace OpenTK.Graphics.ES11 public static void Indexx(int component) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxvOES")] + [CLSCompliant(false)] public static unsafe void Indexx(int* component) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -13106,6 +13436,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferOES")] + [CLSCompliant(false)] public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -13116,8 +13447,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a value that may be the name of a framebuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferOES")] + [CLSCompliant(false)] public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -13129,6 +13460,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferOES")] + [CLSCompliant(false)] public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -13139,8 +13471,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a value that may be the name of a renderbuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferOES")] + [CLSCompliant(false)] public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -13152,6 +13484,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] + [CLSCompliant(false)] public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -13162,8 +13495,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a value that may be the name of a vertex array object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] + [CLSCompliant(false)] public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13172,11 +13505,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] + [CLSCompliant(false)] public static void LightModelx(OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] + [CLSCompliant(false)] public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13185,11 +13519,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] + [CLSCompliant(false)] public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] + [CLSCompliant(false)] public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13198,15 +13533,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] + [CLSCompliant(false)] public static void LoadMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] + [CLSCompliant(false)] public static void LoadMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] + [CLSCompliant(false)] public static unsafe void LoadMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: OES_matrix_palette] @@ -13215,15 +13552,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] + [CLSCompliant(false)] public static void LoadTransposeMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] + [CLSCompliant(false)] public static void LoadTransposeMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] + [CLSCompliant(false)] public static unsafe void LoadTransposeMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13264,11 +13603,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] + [CLSCompliant(false)] public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] + [CLSCompliant(false)] public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); } /// [requires: OES_matrix_palette] @@ -13277,18 +13617,21 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_matrix_palette] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")] + [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: OES_matrix_palette] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")] + [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: OES_matrix_palette] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")] + [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -13313,6 +13656,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] + [CLSCompliant(false)] public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, Byte s) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13328,8 +13672,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] + [CLSCompliant(false)] public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, SByte s) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13345,8 +13689,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13362,8 +13706,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13371,8 +13715,8 @@ namespace OpenTK.Graphics.ES11 public static void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, int s) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13389,6 +13733,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, Byte s, Byte t) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13404,8 +13749,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, SByte s, SByte t) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13422,6 +13767,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13438,6 +13784,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13453,8 +13800,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13470,8 +13817,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13487,8 +13834,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13504,8 +13851,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13514,15 +13861,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13539,6 +13888,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13554,8 +13904,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13572,6 +13922,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13588,6 +13939,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13603,8 +13955,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13620,8 +13972,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13637,8 +13989,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13654,8 +14006,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13664,15 +14016,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13689,6 +14043,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r, Byte q) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13704,8 +14059,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r, SByte q) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13722,6 +14077,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13738,6 +14094,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13753,8 +14110,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13770,8 +14127,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13787,8 +14144,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -13804,8 +14161,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13814,41 +14171,47 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] + [CLSCompliant(false)] public static void MultMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] + [CLSCompliant(false)] public static void MultMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] + [CLSCompliant(false)] public static unsafe void MultMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] + [CLSCompliant(false)] public static void MultTransposeMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] + [CLSCompliant(false)] public static void MultTransposeMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] + [CLSCompliant(false)] public static unsafe void MultTransposeMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -13857,15 +14220,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] + [CLSCompliant(false)] public static void Normal3x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] + [CLSCompliant(false)] public static void Normal3x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] + [CLSCompliant(false)] public static unsafe void Normal3x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -13911,11 +14276,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] + [CLSCompliant(false)] public static void PointParameterx(OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] + [CLSCompliant(false)] public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_point_size_array] @@ -13924,18 +14290,21 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_point_size_array] [AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")] + [CLSCompliant(false)] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: OES_point_size_array] [AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")] + [CLSCompliant(false)] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: OES_point_size_array] [AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")] + [CLSCompliant(false)] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13956,43 +14325,47 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static void PrioritizeTexturesx(Int32 n, Int32[] textures, int[] priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static void PrioritizeTexturesx(Int32 n, ref Int32 textures, ref int priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static unsafe void PrioritizeTexturesx(Int32 n, Int32* textures, int* priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static void PrioritizeTexturesx(Int32 n, UInt32[] textures, int[] priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static void PrioritizeTexturesx(Int32 n, ref UInt32 textures, ref int priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static unsafe void PrioritizeTexturesx(Int32 n, UInt32* textures, int* priorities) { throw new NotImplementedException(); } /// [requires: OES_query_matrix] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] + [CLSCompliant(false)] public static Int32 QueryMatrixx([OutAttribute] int[] mantissa, [OutAttribute] Int32[] exponent) { throw new NotImplementedException(); } /// [requires: OES_query_matrix] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] + [CLSCompliant(false)] public static Int32 QueryMatrixx([OutAttribute] out int mantissa, [OutAttribute] out Int32 exponent) { throw new NotImplementedException(); } /// [requires: OES_query_matrix] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] + [CLSCompliant(false)] public static unsafe Int32 QueryMatrixx([OutAttribute] int* mantissa, [OutAttribute] Int32* exponent) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14001,15 +14374,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] + [CLSCompliant(false)] public static void RasterPos2x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] + [CLSCompliant(false)] public static void RasterPos2x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] + [CLSCompliant(false)] public static unsafe void RasterPos2x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14018,15 +14393,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] + [CLSCompliant(false)] public static void RasterPos3x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] + [CLSCompliant(false)] public static void RasterPos3x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] + [CLSCompliant(false)] public static unsafe void RasterPos3x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14035,15 +14412,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] + [CLSCompliant(false)] public static void RasterPos4x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] + [CLSCompliant(false)] public static void RasterPos4x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] + [CLSCompliant(false)] public static unsafe void RasterPos4x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14052,15 +14431,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] + [CLSCompliant(false)] public static void Rectx(int[] v1, int[] v2) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] + [CLSCompliant(false)] public static void Rectx(ref int v1, ref int v2) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] + [CLSCompliant(false)] public static unsafe void Rectx(int* v1, int* v2) { throw new NotImplementedException(); } /// [requires: OES_framebuffer_object] @@ -14126,6 +14507,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] + [CLSCompliant(false)] public static void TexCoord1(Byte s) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14136,8 +14518,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] + [CLSCompliant(false)] public static void TexCoord1(SByte s) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14148,8 +14530,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord1(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14160,8 +14542,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord1(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14169,8 +14551,8 @@ namespace OpenTK.Graphics.ES11 public static void TexCoord1x(int s) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord1x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14182,6 +14564,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] + [CLSCompliant(false)] public static void TexCoord2(Byte s, Byte t) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14192,8 +14575,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] + [CLSCompliant(false)] public static void TexCoord2(SByte s, SByte t) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14205,6 +14588,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static void TexCoord2(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14216,6 +14600,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static void TexCoord2(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14226,8 +14611,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord2(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14238,8 +14623,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static void TexCoord2(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14250,8 +14635,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static void TexCoord2(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14262,8 +14647,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord2(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14272,15 +14657,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] + [CLSCompliant(false)] public static void TexCoord2x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] + [CLSCompliant(false)] public static void TexCoord2x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord2x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14292,6 +14679,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] + [CLSCompliant(false)] public static void TexCoord3(Byte s, Byte t, Byte r) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14302,8 +14690,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] + [CLSCompliant(false)] public static void TexCoord3(SByte s, SByte t, SByte r) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14315,6 +14703,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static void TexCoord3(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14326,6 +14715,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static void TexCoord3(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14336,8 +14726,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord3(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14348,8 +14738,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static void TexCoord3(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14360,8 +14750,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static void TexCoord3(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14372,8 +14762,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord3(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14382,15 +14772,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] + [CLSCompliant(false)] public static void TexCoord3x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] + [CLSCompliant(false)] public static void TexCoord3x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord3x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14402,6 +14794,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")] + [CLSCompliant(false)] public static void TexCoord4(Byte s, Byte t, Byte r, Byte q) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14412,8 +14805,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")] + [CLSCompliant(false)] public static void TexCoord4(SByte s, SByte t, SByte r, SByte q) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14425,6 +14818,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static void TexCoord4(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14436,6 +14830,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static void TexCoord4(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14446,8 +14841,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord4(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14458,8 +14853,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static void TexCoord4(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14470,8 +14865,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static void TexCoord4(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14482,8 +14877,8 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord4(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14492,15 +14887,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] + [CLSCompliant(false)] public static void TexCoord4x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] + [CLSCompliant(false)] public static void TexCoord4x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord4x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14509,11 +14906,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] + [CLSCompliant(false)] public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] + [CLSCompliant(false)] public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -14556,6 +14954,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")] + [CLSCompliant(false)] public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -14576,8 +14975,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")] + [CLSCompliant(false)] public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -14620,6 +15019,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")] + [CLSCompliant(false)] public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: OES_texture_cube_map] @@ -14640,8 +15040,8 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")] + [CLSCompliant(false)] public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] @@ -14650,11 +15050,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point|OES_texture_cube_map] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")] + [CLSCompliant(false)] public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")] + [CLSCompliant(false)] public static unsafe void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14663,11 +15064,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] + [CLSCompliant(false)] public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] + [CLSCompliant(false)] public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14687,6 +15089,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] + [CLSCompliant(false)] public static void Vertex2(Byte x) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14697,8 +15100,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] + [CLSCompliant(false)] public static void Vertex2(SByte x) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14710,6 +15113,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] + [CLSCompliant(false)] public static void Vertex2(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14720,8 +15124,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex2(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14732,8 +15136,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] + [CLSCompliant(false)] public static void Vertex2(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14744,8 +15148,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex2(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14754,11 +15158,12 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] + [CLSCompliant(false)] public static void Vertex2x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] + [CLSCompliant(false)] public static unsafe void Vertex2x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14770,6 +15175,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] + [CLSCompliant(false)] public static void Vertex3(Byte x, Byte y) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14780,8 +15186,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] + [CLSCompliant(false)] public static void Vertex3(SByte x, SByte y) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14793,6 +15199,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static void Vertex3(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14804,6 +15211,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static void Vertex3(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14814,8 +15222,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex3(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14826,8 +15234,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static void Vertex3(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14838,8 +15246,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static void Vertex3(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14850,8 +15258,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex3(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14860,15 +15268,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] + [CLSCompliant(false)] public static void Vertex3x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] + [CLSCompliant(false)] public static void Vertex3x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] + [CLSCompliant(false)] public static unsafe void Vertex3x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14880,6 +15290,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] + [CLSCompliant(false)] public static void Vertex4(Byte x, Byte y, Byte z) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14890,8 +15301,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] + [CLSCompliant(false)] public static void Vertex4(SByte x, SByte y, SByte z) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14903,6 +15314,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static void Vertex4(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14914,6 +15326,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static void Vertex4(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14924,8 +15337,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex4(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14936,8 +15349,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static void Vertex4(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14948,8 +15361,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static void Vertex4(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -14960,8 +15373,8 @@ namespace OpenTK.Graphics.ES11 /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex4(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -14970,15 +15383,17 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] + [CLSCompliant(false)] public static void Vertex4x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] + [CLSCompliant(false)] public static void Vertex4x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] + [CLSCompliant(false)] public static unsafe void Vertex4x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_matrix_palette] @@ -14987,18 +15402,21 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_matrix_palette] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")] + [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: OES_matrix_palette] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")] + [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: OES_matrix_palette] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")] + [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -15015,29 +15433,32 @@ namespace OpenTK.Graphics.ES11 { /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] + [CLSCompliant(false)] public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] + [CLSCompliant(false)] public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] + [CLSCompliant(false)] public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] + [CLSCompliant(false)] public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] + [CLSCompliant(false)] public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] + [CLSCompliant(false)] public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] @@ -15046,18 +15467,21 @@ namespace OpenTK.Graphics.ES11 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] + [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] + [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] + [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -15070,198 +15494,212 @@ namespace OpenTK.Graphics.ES11 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] Int32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] out Int32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetBuffers([OutAttribute] Int32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] UInt32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] out UInt32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetBuffers([OutAttribute] UInt32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] Int32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] out Int32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgram([OutAttribute] Int32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] UInt32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] out UInt32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgram([OutAttribute] UInt32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetRenderbuffers([OutAttribute] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetRenderbuffers([OutAttribute] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] Int32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] out Int32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute] Int32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] UInt32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] out UInt32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute] UInt32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] @@ -15270,18 +15708,21 @@ namespace OpenTK.Graphics.ES11 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[] texels) where T10 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[,] texels) where T10 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[,,] texels) where T10 : struct { throw new NotImplementedException(); } @@ -15294,39 +15735,42 @@ namespace OpenTK.Graphics.ES11 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] + [CLSCompliant(false)] public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] + [CLSCompliant(false)] public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] @@ -15335,67 +15779,72 @@ namespace OpenTK.Graphics.ES11 /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute] Int32[] driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute] UInt32[] driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute] out Int32 driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute] out UInt32 driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute] Int32* driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute] UInt32* driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new NotImplementedException(); } } diff --git a/Source/OpenTK/Graphics/ES20/ES20.cs b/Source/OpenTK/Graphics/ES20/ES20.cs index 60e8eb69..39d8cfbb 100644 --- a/Source/OpenTK/Graphics/ES20/ES20.cs +++ b/Source/OpenTK/Graphics/ES20/ES20.cs @@ -392,300 +392,323 @@ namespace OpenTK.Graphics.ES20 { /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] + [CLSCompliant(false)] public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] + [CLSCompliant(false)] public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitor(Int32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitor(UInt32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, Int32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, ref Int32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void DeletePerfMonitors(Int32 n, Int32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, UInt32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, ref UInt32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void DeletePerfMonitors(Int32 n, UInt32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] + [CLSCompliant(false)] public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] + [CLSCompliant(false)] public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] Int32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] out Int32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute] Int32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] UInt32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] out UInt32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute] UInt32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] Int32[] data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] out Int32 data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] Int32* data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] out UInt32 data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] UInt32* data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(Int32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] Int32[] counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(Int32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] out Int32 counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] Int32* counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32[] counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] out UInt32 counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32* counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] Int32[] groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out Int32 groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] UInt32[] groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out UInt32 groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroups([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32* groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroups([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32* groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] Int32[] counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] out Int32 counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] Int32* counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] UInt32[] counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] out UInt32 counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] UInt32* counterList) { throw new NotImplementedException(); } } @@ -860,6 +883,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -894,6 +918,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -928,6 +953,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -1026,6 +1052,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -1059,6 +1086,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -1092,6 +1120,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -1131,30 +1160,32 @@ namespace OpenTK.Graphics.ES20 /// [requires: ANGLE_translated_shader_source] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_framebuffer_multisample] @@ -1234,6 +1265,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: ANGLE_instanced_arrays] @@ -1249,8 +1281,8 @@ namespace OpenTK.Graphics.ES20 /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } } @@ -1277,6 +1309,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1298,8 +1331,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1321,6 +1354,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1341,17 +1375,18 @@ namespace OpenTK.Graphics.ES20 /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_copy_texture_levels] [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] + [CLSCompliant(false)] public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } /// [requires: APPLE_copy_texture_levels] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] + [CLSCompliant(false)] public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1401,39 +1436,45 @@ namespace OpenTK.Graphics.ES20 /// [requires: APPLE_sync] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1466,6 +1507,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1498,6 +1540,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1529,8 +1572,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1562,6 +1605,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1593,6 +1637,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1623,8 +1668,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array to receive the values of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1725,6 +1770,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1746,8 +1792,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1769,6 +1815,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1789,8 +1836,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } } @@ -1832,6 +1879,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] + [CLSCompliant(false)] public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1847,8 +1895,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the shader object that is to be attached. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] + [CLSCompliant(false)] public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1870,6 +1918,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] + [CLSCompliant(false)] public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1890,8 +1939,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a null terminated string containing the name of the vertex shader attribute variable to which index is to be bound. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] + [CLSCompliant(false)] public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1909,6 +1958,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES20.All target, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1925,8 +1975,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES20.All target, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1943,6 +1993,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1958,8 +2009,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1977,6 +2028,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1993,8 +2045,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2011,6 +2063,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2026,8 +2079,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the name of the framebuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2045,6 +2098,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2061,8 +2115,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2079,6 +2133,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2094,8 +2149,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the name of the renderbuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2113,6 +2168,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES20.All target, Int32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2129,8 +2185,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES20.All target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2147,6 +2203,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2162,8 +2219,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2411,6 +2468,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.ES20.All usage) where T2 : struct { throw new NotImplementedException(); } @@ -2440,6 +2498,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct { throw new NotImplementedException(); } @@ -2469,6 +2528,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct { throw new NotImplementedException(); } @@ -2580,6 +2640,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use BufferUsageHint overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct { throw new NotImplementedException(); } @@ -2608,6 +2669,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -2637,6 +2699,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use BufferUsageHint overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct { throw new NotImplementedException(); } @@ -2665,6 +2728,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -2694,6 +2758,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use BufferUsageHint overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct { throw new NotImplementedException(); } @@ -2722,6 +2787,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -2835,6 +2901,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -2864,6 +2931,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -2893,6 +2961,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -2976,6 +3045,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -3004,6 +3074,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -3032,6 +3103,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -3168,6 +3240,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] + [CLSCompliant(false)] public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -3178,8 +3251,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the shader object to be compiled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] + [CLSCompliant(false)] public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -3274,6 +3347,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -3323,6 +3397,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -3372,6 +3447,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -3517,6 +3593,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -3566,6 +3643,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -3615,6 +3693,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -3758,6 +3837,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -3806,6 +3886,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -3854,6 +3935,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -4008,6 +4090,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -4062,6 +4145,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -4116,6 +4200,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -4276,6 +4361,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -4330,6 +4416,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -4384,6 +4471,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -4542,6 +4630,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -4595,6 +4684,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -4648,6 +4738,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -5037,6 +5128,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -5055,6 +5147,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -5073,6 +5166,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -5130,6 +5224,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5167,6 +5262,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5203,8 +5299,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5241,8 +5337,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5279,8 +5375,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5317,8 +5413,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5355,6 +5451,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5391,6 +5488,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5426,8 +5524,8 @@ namespace OpenTK.Graphics.ES20 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5463,8 +5561,8 @@ namespace OpenTK.Graphics.ES20 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5500,8 +5598,8 @@ namespace OpenTK.Graphics.ES20 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5537,8 +5635,8 @@ namespace OpenTK.Graphics.ES20 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// @@ -5576,6 +5674,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// @@ -5612,8 +5711,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, UInt32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// @@ -5650,6 +5749,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, Int32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// @@ -5685,8 +5785,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5703,6 +5803,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(Int32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5718,8 +5819,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5736,6 +5837,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5752,6 +5854,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref Int32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5767,8 +5870,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, Int32* buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5784,8 +5887,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5801,8 +5904,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5818,8 +5921,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5836,6 +5939,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffer(Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5851,8 +5955,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffer(UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5869,6 +5973,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5885,6 +5990,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5900,8 +6006,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5917,8 +6023,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5934,8 +6040,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5951,8 +6057,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5964,6 +6070,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5974,8 +6081,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] + [CLSCompliant(false)] public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -5992,6 +6099,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6007,8 +6115,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6025,6 +6133,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6041,6 +6150,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6056,8 +6166,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6073,8 +6183,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6090,8 +6200,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6107,8 +6217,8 @@ namespace OpenTK.Graphics.ES20 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6120,6 +6230,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] + [CLSCompliant(false)] public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6130,8 +6241,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the shader object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] + [CLSCompliant(false)] public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6148,6 +6259,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(Int32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6163,8 +6275,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(UInt32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6181,6 +6293,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, Int32[] textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6197,6 +6310,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6212,8 +6326,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, Int32* textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6229,8 +6343,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6246,8 +6360,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6263,8 +6377,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, UInt32* textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6331,6 +6445,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] + [CLSCompliant(false)] public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6346,8 +6461,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the shader object to be detached. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] + [CLSCompliant(false)] public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6361,11 +6476,12 @@ namespace OpenTK.Graphics.ES20 /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6485,6 +6601,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -6514,6 +6631,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -6543,6 +6661,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -6628,6 +6747,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -6657,6 +6777,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -6686,6 +6807,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -6769,6 +6891,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -6797,6 +6920,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -6825,6 +6949,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -6899,6 +7024,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6909,8 +7035,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the index of the generic vertex attribute to be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6950,6 +7076,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -6976,8 +7103,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7004,6 +7131,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7029,8 +7157,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7058,6 +7186,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use FramebufferAttachment overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7084,50 +7213,54 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use FramebufferAttachment overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use TextureTarget2d overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use TextureTarget2d overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7167,6 +7300,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static Int32 GenBuffer() { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7183,6 +7317,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7199,6 +7334,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7214,8 +7350,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7231,8 +7367,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7248,8 +7384,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7265,8 +7401,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7306,6 +7442,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static Int32 GenFramebuffer() { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7322,6 +7459,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7338,6 +7476,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7353,8 +7492,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7370,8 +7509,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7387,8 +7526,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7404,8 +7543,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7422,6 +7561,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7438,6 +7578,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7454,6 +7595,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7469,8 +7611,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7486,8 +7628,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7503,8 +7645,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7520,8 +7662,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7538,6 +7680,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static Int32 GenTexture() { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7554,6 +7697,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7570,6 +7714,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7585,8 +7730,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7602,8 +7747,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7619,8 +7764,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7636,8 +7781,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7679,6 +7824,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7721,6 +7867,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7761,8 +7908,8 @@ namespace OpenTK.Graphics.ES20 /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7804,8 +7951,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES20.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7846,8 +7993,8 @@ namespace OpenTK.Graphics.ES20 /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7889,8 +8036,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7931,8 +8078,8 @@ namespace OpenTK.Graphics.ES20 /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7974,8 +8121,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES20.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8017,6 +8164,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8059,6 +8207,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8099,8 +8248,8 @@ namespace OpenTK.Graphics.ES20 /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8142,8 +8291,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES20.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8184,8 +8333,8 @@ namespace OpenTK.Graphics.ES20 /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8227,8 +8376,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8269,8 +8418,8 @@ namespace OpenTK.Graphics.ES20 /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8312,8 +8461,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES20.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8340,6 +8489,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] Int32[] shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8366,6 +8516,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out Int32 shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8391,8 +8542,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32* shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8418,8 +8569,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] UInt32[] shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8445,8 +8596,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out UInt32 shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8472,8 +8623,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32* shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8490,6 +8641,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8505,46 +8657,52 @@ namespace OpenTK.Graphics.ES20 /// Points to a null terminated string containing the name of the attribute variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static bool GetBoolean(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static bool GetBoolean(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8567,6 +8725,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8589,6 +8748,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8610,8 +8770,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8633,6 +8793,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8654,6 +8815,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8674,8 +8836,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// @@ -8723,6 +8885,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All[] sources, [OutAttribute] OpenTK.Graphics.ES20.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES20.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -8770,6 +8933,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.All sources, [OutAttribute] out OpenTK.Graphics.ES20.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES20.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -8816,8 +8980,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All* sources, [OutAttribute] OpenTK.Graphics.ES20.All* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.ES20.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -8864,6 +9028,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -8910,6 +9075,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -8955,8 +9121,8 @@ namespace OpenTK.Graphics.ES20 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -9003,8 +9169,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All[] sources, [OutAttribute] OpenTK.Graphics.ES20.All[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.ES20.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -9051,8 +9217,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.All sources, [OutAttribute] out OpenTK.Graphics.ES20.All types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.ES20.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -9099,8 +9265,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All* sources, [OutAttribute] OpenTK.Graphics.ES20.All* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.ES20.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -9146,8 +9312,8 @@ namespace OpenTK.Graphics.ES20 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -9193,8 +9359,8 @@ namespace OpenTK.Graphics.ES20 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -9240,8 +9406,8 @@ namespace OpenTK.Graphics.ES20 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9253,39 +9419,45 @@ namespace OpenTK.Graphics.ES20 /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static Single GetFloat(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static Single GetFloat(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9313,6 +9485,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9340,6 +9513,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9366,8 +9540,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9394,6 +9568,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9420,6 +9595,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9445,8 +9621,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of a variable receive the value of pname for attachment. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9474,6 +9650,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use FramebufferAttachment overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9501,6 +9678,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use FramebufferAttachment overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9527,46 +9705,52 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use FramebufferAttachment overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static Int32 GetInteger(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static Int32 GetInteger(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// @@ -9599,6 +9783,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9631,6 +9816,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9662,8 +9848,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9695,8 +9881,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9728,8 +9914,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9761,8 +9947,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9794,6 +9980,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9825,6 +10012,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9855,8 +10043,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9887,8 +10075,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9919,8 +10107,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9951,8 +10139,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -9979,6 +10167,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -10005,6 +10194,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -10030,8 +10220,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -10058,6 +10248,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10086,6 +10277,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10113,8 +10305,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10143,6 +10335,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10171,6 +10364,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10198,8 +10392,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10228,6 +10422,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10256,6 +10451,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10283,8 +10479,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10313,6 +10509,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10341,6 +10538,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10368,8 +10566,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -10406,6 +10604,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } @@ -10425,6 +10624,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -10444,6 +10644,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -10497,6 +10698,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } @@ -10515,6 +10717,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -10533,6 +10736,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -10579,6 +10783,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10604,8 +10809,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10631,8 +10836,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10658,8 +10863,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10682,6 +10887,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10704,6 +10910,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10725,8 +10932,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10748,6 +10955,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10769,6 +10977,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10789,8 +10998,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10813,6 +11022,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10835,6 +11045,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10856,8 +11067,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use GetProgramParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10879,8 +11090,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10902,8 +11113,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10925,8 +11136,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10947,8 +11158,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10969,8 +11180,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10991,8 +11202,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11014,8 +11225,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use GetProgramParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11037,8 +11248,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use GetProgramParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11060,8 +11271,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use GetProgramParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11084,6 +11295,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11106,6 +11318,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11127,8 +11340,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11150,6 +11363,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11171,6 +11385,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11191,8 +11406,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array to receive the value of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11219,6 +11434,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11244,8 +11460,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11271,8 +11487,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11298,8 +11514,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11322,6 +11538,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11344,6 +11561,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11365,8 +11583,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11388,6 +11606,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11409,6 +11628,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11429,8 +11649,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11452,8 +11672,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11475,8 +11695,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11498,8 +11718,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11520,8 +11740,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11542,8 +11762,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11564,8 +11784,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11593,6 +11813,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute] Int32[] range, [OutAttribute] Int32[] precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11620,6 +11841,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute] out Int32 range, [OutAttribute] out Int32 precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11646,8 +11868,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute] Int32* range, [OutAttribute] Int32* precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11674,6 +11896,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute] Int32[] range, [OutAttribute] Int32[] precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11700,6 +11923,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute] out Int32 range, [OutAttribute] out Int32 precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11725,8 +11949,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an integer into which the numeric precision of the implementation is written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute] Int32* range, [OutAttribute] Int32* precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11753,6 +11977,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11778,8 +12003,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11805,8 +12030,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11832,8 +12057,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11889,6 +12114,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11911,6 +12137,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11932,8 +12159,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11956,6 +12183,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11978,6 +12206,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11999,8 +12228,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use GetTextureParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12022,6 +12251,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12043,6 +12273,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12063,8 +12294,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12087,6 +12318,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12109,6 +12341,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12130,8 +12363,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12154,6 +12387,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12176,6 +12410,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12197,8 +12432,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use GetTextureParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12220,6 +12455,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12241,6 +12477,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12261,8 +12498,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12284,6 +12521,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12305,6 +12543,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12325,8 +12564,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12347,8 +12586,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12369,8 +12608,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12391,8 +12630,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12414,6 +12653,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12435,6 +12675,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12455,8 +12696,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12477,8 +12718,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12499,8 +12740,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12521,8 +12762,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12539,6 +12780,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12554,8 +12796,8 @@ namespace OpenTK.Graphics.ES20 /// Points to a null terminated string containing the name of the uniform variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12578,6 +12820,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12600,6 +12843,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12621,8 +12865,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12644,6 +12888,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12665,6 +12910,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12685,8 +12931,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12708,8 +12954,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12731,8 +12977,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12754,8 +13000,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12776,8 +13022,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12798,8 +13044,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12820,8 +13066,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12844,6 +13090,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12866,6 +13113,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12887,8 +13135,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12910,6 +13158,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12931,6 +13180,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12951,8 +13201,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12974,8 +13224,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12997,8 +13247,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13020,8 +13270,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13042,8 +13292,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13064,8 +13314,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13086,8 +13336,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13110,6 +13360,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13132,6 +13383,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13156,6 +13408,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13180,6 +13433,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13204,6 +13458,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13227,6 +13482,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13248,6 +13504,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13271,6 +13528,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13294,6 +13552,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13317,6 +13576,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13340,8 +13600,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13363,8 +13623,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13388,8 +13648,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13413,8 +13673,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13438,8 +13698,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13462,8 +13722,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13484,8 +13744,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13508,8 +13768,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13532,8 +13792,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13556,8 +13816,8 @@ namespace OpenTK.Graphics.ES20 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -13604,6 +13864,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13614,8 +13875,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a value that may be the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13660,6 +13921,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] + [CLSCompliant(false)] public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13670,8 +13932,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a value that may be the name of a framebuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] + [CLSCompliant(false)] public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13683,6 +13945,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] + [CLSCompliant(false)] public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13693,8 +13956,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a potential program object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] + [CLSCompliant(false)] public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13706,6 +13969,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] + [CLSCompliant(false)] public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13716,8 +13980,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a value that may be the name of a renderbuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] + [CLSCompliant(false)] public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13729,6 +13993,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] + [CLSCompliant(false)] public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13739,8 +14004,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a potential shader object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] + [CLSCompliant(false)] public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13752,6 +14017,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13762,8 +14028,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a value that may be the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13786,6 +14052,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] + [CLSCompliant(false)] public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13796,8 +14063,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the handle of the program object to be linked. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] + [CLSCompliant(false)] public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } /// @@ -13825,6 +14092,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// @@ -13851,8 +14119,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// @@ -13879,6 +14147,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// @@ -13904,8 +14173,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string containing the label to assign to the object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// @@ -13948,6 +14217,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -13971,6 +14241,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -13994,6 +14265,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -14100,6 +14372,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } /// @@ -14125,8 +14398,8 @@ namespace OpenTK.Graphics.ES20 /// The a string containing the message to be sent to the debug output stream. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14191,6 +14464,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -14225,6 +14499,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -14259,6 +14534,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -14357,6 +14633,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -14390,6 +14667,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -14423,6 +14701,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -14581,6 +14860,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14613,6 +14893,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -14647,6 +14928,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -14681,6 +14963,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -14715,6 +14998,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -14748,6 +15032,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14779,6 +15064,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -14812,6 +15098,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -14845,6 +15132,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -14878,6 +15166,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -14912,6 +15201,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14944,6 +15234,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -14978,6 +15269,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15012,6 +15304,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15046,6 +15339,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15079,6 +15373,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -15110,6 +15405,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15143,6 +15439,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15176,6 +15473,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15209,6 +15507,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15242,8 +15541,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -15275,8 +15574,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15310,8 +15609,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15345,8 +15644,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15380,8 +15679,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15414,8 +15713,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -15446,8 +15745,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15480,8 +15779,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15514,8 +15813,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15548,8 +15847,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15583,8 +15882,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -15616,8 +15915,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15651,8 +15950,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15686,8 +15985,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15721,8 +16020,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15755,8 +16054,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -15787,8 +16086,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15821,8 +16120,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15855,8 +16154,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15889,8 +16188,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15924,8 +16223,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -15957,8 +16256,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -15992,8 +16291,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16027,8 +16326,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16062,8 +16361,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16096,8 +16395,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16128,8 +16427,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16162,8 +16461,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16196,8 +16495,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16230,8 +16529,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16265,8 +16564,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16298,8 +16597,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16333,8 +16632,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16368,8 +16667,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16403,8 +16702,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16437,8 +16736,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16469,8 +16768,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16503,8 +16802,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16537,8 +16836,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16571,8 +16870,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -16601,6 +16900,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shader, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16627,6 +16927,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shader, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16652,8 +16953,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static unsafe void ShaderSource(Int32 shader, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16679,8 +16980,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shader, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16706,8 +17007,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shader, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16733,8 +17034,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static unsafe void ShaderSource(UInt32 shader, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16757,6 +17058,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16778,8 +17080,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16801,6 +17103,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16821,8 +17124,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16850,6 +17153,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16876,8 +17180,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16905,6 +17209,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16931,8 +17236,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use StencilFace overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16959,6 +17264,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16984,8 +17290,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16997,6 +17303,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17007,8 +17314,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17026,6 +17333,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17042,8 +17350,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17061,6 +17369,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES20.CullFaceMode face, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17077,8 +17386,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use StencilFace overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES20.CullFaceMode face, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17095,6 +17404,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES20.StencilFace face, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17110,8 +17420,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES20.StencilFace face, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17339,6 +17649,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -17393,6 +17704,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -17447,6 +17759,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -17607,6 +17920,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -17661,6 +17975,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -17715,6 +18030,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -17873,6 +18189,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -17926,6 +18243,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -17979,6 +18297,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -18123,6 +18442,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18152,8 +18472,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18183,6 +18503,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18211,8 +18532,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18302,6 +18623,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18331,8 +18653,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18362,6 +18684,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18390,8 +18713,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18496,6 +18819,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -18550,6 +18874,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -18604,6 +18929,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -18764,6 +19090,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -18818,6 +19145,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -18872,6 +19200,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -19030,6 +19359,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -19083,6 +19413,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -19136,6 +19467,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -19259,6 +19591,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19293,6 +19626,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19326,8 +19660,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19396,6 +19730,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19430,6 +19765,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19463,8 +19799,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19533,6 +19869,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19567,6 +19904,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19600,8 +19938,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19670,6 +20008,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19703,8 +20042,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19773,6 +20112,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19807,6 +20147,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19840,8 +20181,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19910,6 +20251,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19944,6 +20286,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19977,8 +20320,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20047,6 +20390,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20081,6 +20425,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20114,8 +20459,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20184,6 +20529,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20218,6 +20564,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20251,47 +20598,53 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20303,6 +20656,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] + [CLSCompliant(false)] public static void UseProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20313,8 +20667,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the handle of the program object whose executables are to be used as part of current rendering state. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] + [CLSCompliant(false)] public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20326,6 +20680,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] + [CLSCompliant(false)] public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20336,8 +20691,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the handle of the program object to be validated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] + [CLSCompliant(false)] public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20374,6 +20729,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20409,8 +20765,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20447,6 +20803,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20482,8 +20839,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20519,8 +20876,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20556,8 +20913,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20594,6 +20951,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20629,8 +20987,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20667,6 +21025,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20703,6 +21062,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20738,8 +21098,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20775,8 +21135,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20812,8 +21172,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20849,8 +21209,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20887,6 +21247,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20922,8 +21283,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20960,6 +21321,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20996,6 +21358,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21031,8 +21394,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21068,8 +21431,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21105,8 +21468,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21142,8 +21505,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21180,6 +21543,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21215,8 +21579,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21253,6 +21617,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21289,6 +21654,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21324,8 +21690,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21361,8 +21727,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21398,8 +21764,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21435,8 +21801,8 @@ namespace OpenTK.Graphics.ES20 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21474,6 +21840,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21511,6 +21878,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21550,6 +21918,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21589,6 +21958,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21628,6 +21998,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21666,6 +22037,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21702,6 +22074,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21740,6 +22113,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21778,6 +22152,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21816,6 +22191,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21854,8 +22230,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21892,8 +22268,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21932,8 +22308,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -21972,8 +22348,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -22012,8 +22388,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -22051,8 +22427,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -22088,8 +22464,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -22127,8 +22503,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -22166,8 +22542,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -22205,8 +22581,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -22231,11 +22607,12 @@ namespace OpenTK.Graphics.ES20 { /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] + [CLSCompliant(false)] public static void ActiveProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] + [CLSCompliant(false)] public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22252,6 +22629,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] + [CLSCompliant(false)] public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22267,8 +22645,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the program object to set as the active program pipeline object pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] + [CLSCompliant(false)] public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22286,6 +22664,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES20.All target, Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22302,8 +22681,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES20.All target, UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22320,6 +22699,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES20.QueryTarget target, Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22335,8 +22715,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES20.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22348,6 +22728,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] + [CLSCompliant(false)] public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22358,8 +22739,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the name of the pipeline object to bind to the context. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] + [CLSCompliant(false)] public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_blend_minmax] @@ -22439,11 +22820,12 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(Int32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22460,6 +22842,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22476,6 +22859,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref Int32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22491,8 +22875,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, Int32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22508,8 +22892,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22525,8 +22909,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -22542,17 +22926,18 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQuery(Int32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQuery(UInt32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22569,6 +22954,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22585,6 +22971,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22600,8 +22987,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22617,8 +23004,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22634,8 +23021,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -22651,21 +23038,23 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: EXT_discard_framebuffer] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] + [CLSCompliant(false)] public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, OpenTK.Graphics.ES20.All[] attachments) { throw new NotImplementedException(); } /// [requires: EXT_discard_framebuffer] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] + [CLSCompliant(false)] public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, ref OpenTK.Graphics.ES20.All attachments) { throw new NotImplementedException(); } /// [requires: EXT_discard_framebuffer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] + [CLSCompliant(false)] public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, OpenTK.Graphics.ES20.All* attachments) { throw new NotImplementedException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] @@ -22736,6 +23125,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All[] bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -22753,6 +23143,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.All bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -22769,8 +23160,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All* bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -22787,6 +23178,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -22803,6 +23195,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -22818,21 +23211,23 @@ namespace OpenTK.Graphics.ES20 /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] + [CLSCompliant(false)] public static void DrawBuffersIndexed(Int32 n, OpenTK.Graphics.ES20.All[] location, Int32[] indices) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] + [CLSCompliant(false)] public static void DrawBuffersIndexed(Int32 n, ref OpenTK.Graphics.ES20.All location, ref Int32 indices) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] + [CLSCompliant(false)] public static unsafe void DrawBuffersIndexed(Int32 n, OpenTK.Graphics.ES20.All* location, Int32* indices) { throw new NotImplementedException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] @@ -22897,6 +23292,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -22931,6 +23327,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -22965,6 +23362,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -23063,6 +23461,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -23096,6 +23495,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -23129,6 +23529,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -23220,15 +23621,17 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_multisampled_render_to_texture] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: EXT_multisampled_render_to_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23245,6 +23648,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23261,6 +23665,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23276,8 +23681,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23293,8 +23698,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23310,8 +23715,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23327,12 +23732,13 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static Int32 GenQuery() { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -23349,6 +23755,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -23365,6 +23772,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -23380,8 +23788,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -23397,8 +23805,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -23414,8 +23822,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -23431,8 +23839,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: EXT_robustness] @@ -23442,119 +23850,127 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -23586,6 +24002,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -23617,6 +24034,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -23647,8 +24065,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -23679,8 +24097,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -23711,8 +24129,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -23743,8 +24161,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23771,6 +24189,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23797,6 +24216,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23822,8 +24242,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23849,8 +24269,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23876,8 +24296,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23903,8 +24323,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23926,6 +24346,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23947,6 +24368,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23967,8 +24389,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -23989,8 +24411,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -24011,8 +24433,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -24033,37 +24455,41 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24086,6 +24512,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24108,6 +24535,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24129,8 +24557,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24152,6 +24580,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24173,6 +24602,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24193,8 +24623,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24216,8 +24646,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24239,8 +24669,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24262,8 +24692,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24284,8 +24714,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24306,8 +24736,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24328,8 +24758,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24352,6 +24782,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24374,6 +24805,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24395,8 +24827,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24418,6 +24850,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24439,6 +24872,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24459,8 +24893,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24482,8 +24916,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24505,8 +24939,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24528,8 +24962,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24550,8 +24984,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24572,8 +25006,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24594,8 +25028,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24617,8 +25051,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24640,8 +25074,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24663,8 +25097,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24685,8 +25119,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24707,8 +25141,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -24729,8 +25163,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -24752,8 +25186,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -24775,8 +25209,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -24798,8 +25232,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -24820,8 +25254,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -24842,8 +25276,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -24864,8 +25298,8 @@ namespace OpenTK.Graphics.ES20 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_debug_marker] @@ -24881,6 +25315,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] + [CLSCompliant(false)] public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -24891,8 +25326,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a value that may be the name of a program pipeline object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] + [CLSCompliant(false)] public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -24904,6 +25339,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] + [CLSCompliant(false)] public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -24914,17 +25350,18 @@ namespace OpenTK.Graphics.ES20 /// Specifies a value that may be the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] + [CLSCompliant(false)] public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] + [CLSCompliant(false)] public static void LabelObject(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] + [CLSCompliant(false)] public static void LabelObject(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -24952,6 +25389,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -24978,8 +25416,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -25006,6 +25444,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -25031,8 +25470,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a combination of access flags indicating the desired access to the range. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25060,6 +25499,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25087,6 +25527,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25113,8 +25554,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25141,6 +25582,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25167,6 +25609,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25192,8 +25635,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size of the first and count /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25226,6 +25669,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32[] count, OpenTK.Graphics.ES20.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25258,6 +25702,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25292,6 +25737,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25326,6 +25772,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25360,6 +25807,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25394,6 +25842,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, ref Int32 count, OpenTK.Graphics.ES20.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25426,6 +25875,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25460,6 +25910,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25494,6 +25945,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25528,6 +25980,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25561,8 +26014,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32* count, OpenTK.Graphics.ES20.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25594,8 +26047,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25629,8 +26082,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25664,8 +26117,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25699,8 +26152,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25734,6 +26187,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25765,6 +26219,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25798,6 +26253,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25831,6 +26287,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25864,6 +26321,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25897,6 +26355,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -25928,6 +26387,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25961,6 +26421,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -25994,6 +26455,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -26027,6 +26489,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -26059,8 +26522,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -26091,8 +26554,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -26125,8 +26588,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -26159,8 +26622,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -26193,8 +26656,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -26223,6 +26686,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26244,6 +26708,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26265,8 +26730,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26287,8 +26752,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES20.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26328,6 +26793,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26366,8 +26832,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26407,6 +26873,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26446,6 +26913,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26484,8 +26952,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26524,8 +26992,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26564,8 +27032,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26604,8 +27072,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26645,6 +27113,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26683,8 +27152,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26724,6 +27193,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26763,6 +27233,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26801,8 +27272,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26841,8 +27312,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26881,8 +27352,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26921,8 +27392,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -26961,8 +27432,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27001,8 +27472,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27041,8 +27512,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27081,8 +27552,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27122,6 +27593,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27160,8 +27632,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27201,6 +27673,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27240,6 +27713,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27278,8 +27752,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27318,8 +27792,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27358,8 +27832,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27398,8 +27872,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27439,6 +27913,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27477,8 +27952,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27518,6 +27993,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27556,8 +28032,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27596,8 +28072,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27636,8 +28112,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27676,8 +28152,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27716,8 +28192,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27756,8 +28232,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27796,8 +28272,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27837,6 +28313,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27875,8 +28352,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27916,6 +28393,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27955,6 +28433,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -27993,8 +28472,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28033,8 +28512,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28073,8 +28552,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28113,8 +28592,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28154,6 +28633,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28192,8 +28672,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28233,6 +28713,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28272,6 +28753,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28310,8 +28792,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28350,8 +28832,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28390,8 +28872,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28430,8 +28912,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28470,8 +28952,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28510,8 +28992,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28550,8 +29032,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28590,8 +29072,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28631,6 +29113,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28669,8 +29152,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28710,6 +29193,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28749,6 +29233,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28787,8 +29272,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28827,8 +29312,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28867,8 +29352,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28907,8 +29392,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28948,6 +29433,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -28986,8 +29472,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29027,6 +29513,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29066,6 +29553,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29104,8 +29592,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29144,8 +29632,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29184,8 +29672,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29224,8 +29712,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29264,8 +29752,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29304,8 +29792,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29344,8 +29832,8 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29384,260 +29872,278 @@ namespace OpenTK.Graphics.ES20 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_debug_marker] @@ -29658,6 +30164,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] public static void QueryCounter(Int32 id, OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -29673,8 +30180,8 @@ namespace OpenTK.Graphics.ES20 /// Specify the counter to query. target must be GL_TIMESTAMP. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] @@ -29687,18 +30194,21 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -29936,29 +30446,32 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_texture_storage] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -29980,6 +30493,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -30000,17 +30514,18 @@ namespace OpenTK.Graphics.ES20 /// Specifies the program object containing the shader executables to use in pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] + [CLSCompliant(false)] public static void UseShaderProgram(OpenTK.Graphics.ES20.All type, Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] + [CLSCompliant(false)] public static void UseShaderProgram(OpenTK.Graphics.ES20.All type, UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -30022,6 +30537,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -30032,8 +30548,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the name of a program pipeline object to validate. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_instanced_arrays] @@ -30050,6 +30566,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: EXT_instanced_arrays] @@ -30065,8 +30582,8 @@ namespace OpenTK.Graphics.ES20 /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } } @@ -30075,11 +30592,12 @@ namespace OpenTK.Graphics.ES20 { /// [requires: IMG_multisampled_render_to_texture] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: IMG_multisampled_render_to_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: IMG_multisampled_render_to_texture] @@ -30179,6 +30697,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -30197,6 +30716,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -30215,6 +30735,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -30272,6 +30793,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30309,6 +30831,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30345,8 +30868,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30383,8 +30906,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30421,8 +30944,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30459,8 +30982,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30497,6 +31020,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30533,6 +31057,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30568,8 +31093,8 @@ namespace OpenTK.Graphics.ES20 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30605,8 +31130,8 @@ namespace OpenTK.Graphics.ES20 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30642,8 +31167,8 @@ namespace OpenTK.Graphics.ES20 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30679,8 +31204,8 @@ namespace OpenTK.Graphics.ES20 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30718,6 +31243,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30754,8 +31280,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, UInt32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30792,6 +31318,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, Int32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30827,8 +31354,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30876,6 +31403,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All[] sources, [OutAttribute] OpenTK.Graphics.ES20.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES20.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30923,6 +31451,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.All sources, [OutAttribute] out OpenTK.Graphics.ES20.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES20.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -30969,8 +31498,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All* sources, [OutAttribute] OpenTK.Graphics.ES20.All* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.ES20.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31017,6 +31546,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31063,6 +31593,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31108,8 +31639,8 @@ namespace OpenTK.Graphics.ES20 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31156,8 +31687,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All[] sources, [OutAttribute] OpenTK.Graphics.ES20.All[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.ES20.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31204,8 +31735,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.All sources, [OutAttribute] out OpenTK.Graphics.ES20.All types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.ES20.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31252,8 +31783,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All* sources, [OutAttribute] OpenTK.Graphics.ES20.All* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.ES20.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31299,8 +31830,8 @@ namespace OpenTK.Graphics.ES20 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31346,8 +31877,8 @@ namespace OpenTK.Graphics.ES20 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31393,8 +31924,8 @@ namespace OpenTK.Graphics.ES20 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31427,6 +31958,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31459,6 +31991,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31490,8 +32023,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31523,8 +32056,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31556,8 +32089,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31589,8 +32122,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31622,6 +32155,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31653,6 +32187,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31683,8 +32218,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31715,8 +32250,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31747,8 +32282,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31779,8 +32314,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31807,6 +32342,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31833,6 +32369,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31858,8 +32395,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -31886,6 +32423,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -31914,6 +32452,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -31941,8 +32480,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -31971,6 +32510,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -31999,6 +32539,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -32026,8 +32567,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -32056,6 +32597,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -32084,6 +32626,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -32111,8 +32654,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -32141,6 +32684,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -32169,6 +32713,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -32196,8 +32741,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -32208,18 +32753,21 @@ namespace OpenTK.Graphics.ES20 /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -32255,6 +32803,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -32281,8 +32830,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -32309,6 +32858,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -32334,8 +32884,8 @@ namespace OpenTK.Graphics.ES20 /// The address of a string containing the label to assign to the object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -32378,6 +32928,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -32401,6 +32952,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -32424,6 +32976,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -32481,6 +33034,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -32506,8 +33060,8 @@ namespace OpenTK.Graphics.ES20 /// The a string containing the message to be sent to the debug output stream. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } } @@ -32648,39 +33202,42 @@ namespace OpenTK.Graphics.ES20 /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFence(Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFence(UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, Int32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, Int32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, UInt32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, UInt32* fences) { throw new NotImplementedException(); } /// [requires: NV_draw_instanced] @@ -32751,6 +33308,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All[] bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -32768,6 +33326,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.All bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -32784,8 +33343,8 @@ namespace OpenTK.Graphics.ES20 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All* bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -32802,6 +33361,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -32818,6 +33378,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -32833,8 +33394,8 @@ namespace OpenTK.Graphics.ES20 /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_instanced] @@ -32899,6 +33460,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -32933,6 +33495,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -32967,6 +33530,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -33065,6 +33629,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -33098,6 +33663,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -33131,6 +33697,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -33170,80 +33737,87 @@ namespace OpenTK.Graphics.ES20 /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] + [CLSCompliant(false)] public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] + [CLSCompliant(false)] public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static Int32 GenFence() { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] Int32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] Int32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] UInt32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] UInt32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] + [CLSCompliant(false)] public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] + [CLSCompliant(false)] public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_read_buffer] @@ -33322,98 +33896,112 @@ namespace OpenTK.Graphics.ES20 /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] + [CLSCompliant(false)] public static void SetFence(Int32 fence, OpenTK.Graphics.ES20.All condition) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] + [CLSCompliant(false)] public static void SetFence(UInt32 fence, OpenTK.Graphics.ES20.All condition) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] + [CLSCompliant(false)] public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] + [CLSCompliant(false)] public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_instanced_arrays] @@ -33430,6 +34018,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: NV_instanced_arrays] @@ -33445,8 +34034,8 @@ namespace OpenTK.Graphics.ES20 /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } } @@ -33462,6 +34051,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] + [CLSCompliant(false)] public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -33472,8 +34062,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the name of the vertex array to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] + [CLSCompliant(false)] public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: OES_texture_3D] @@ -33578,6 +34168,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -33632,6 +34223,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -33686,6 +34278,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -33844,6 +34437,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -33897,6 +34491,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -33950,6 +34545,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -34119,6 +34715,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -34178,6 +34775,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -34237,6 +34835,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -34410,6 +35009,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -34468,6 +35068,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -34526,6 +35127,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -34683,11 +35285,12 @@ namespace OpenTK.Graphics.ES20 /// [requires: OES_vertex_array_object] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArray(Int32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArray(UInt32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34704,6 +35307,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, Int32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34720,6 +35324,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref Int32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34735,8 +35340,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, Int32* arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34752,8 +35357,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34769,8 +35374,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref UInt32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34786,8 +35391,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays) { throw new NotImplementedException(); } /// [requires: OES_EGL_image] @@ -34800,15 +35405,17 @@ namespace OpenTK.Graphics.ES20 /// [requires: OES_texture_3D] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: OES_texture_3D] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static Int32 GenVertexArray() { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34825,6 +35432,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34841,6 +35449,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34856,8 +35465,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34873,8 +35482,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34890,8 +35499,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -34907,8 +35516,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] @@ -34919,6 +35528,7 @@ namespace OpenTK.Graphics.ES20 /// [requires: OES_mapbuffer] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } @@ -34926,6 +35536,7 @@ namespace OpenTK.Graphics.ES20 /// [requires: OES_mapbuffer] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -34933,6 +35544,7 @@ namespace OpenTK.Graphics.ES20 /// [requires: OES_mapbuffer] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -34950,18 +35562,21 @@ namespace OpenTK.Graphics.ES20 /// [requires: OES_mapbuffer] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -35001,6 +35616,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -35032,6 +35648,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35065,6 +35682,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35098,6 +35716,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35131,6 +35750,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -35164,6 +35784,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -35195,6 +35816,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35228,6 +35850,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35261,6 +35884,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35294,6 +35918,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -35326,8 +35951,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -35358,8 +35983,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35392,8 +36017,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35426,8 +36051,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35460,8 +36085,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -35494,8 +36119,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -35526,8 +36151,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35560,8 +36185,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35594,8 +36219,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35628,8 +36253,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -35662,8 +36287,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -35694,8 +36319,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35728,8 +36353,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35762,8 +36387,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35796,8 +36421,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -35830,8 +36455,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -35862,8 +36487,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35896,8 +36521,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35930,8 +36555,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -35964,8 +36589,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -35979,6 +36604,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] + [CLSCompliant(false)] public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -35989,8 +36615,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies a value that may be the name of a vertex array object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] + [CLSCompliant(false)] public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] @@ -36033,6 +36659,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -36059,6 +36686,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -36087,6 +36715,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -36115,6 +36744,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -36143,6 +36773,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -36170,8 +36801,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -36197,8 +36828,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -36226,8 +36857,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -36255,8 +36886,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -36284,8 +36915,8 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -36402,6 +37033,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -36461,6 +37093,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -36520,6 +37153,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -36695,6 +37329,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -36754,6 +37389,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -36813,6 +37449,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -36988,6 +37625,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -37047,6 +37685,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -37106,6 +37745,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -37279,6 +37919,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -37337,6 +37978,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -37395,6 +38037,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -37579,6 +38222,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -37643,6 +38287,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -37707,6 +38352,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -37895,6 +38541,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -37958,6 +38605,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -38021,6 +38669,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -38119,29 +38768,32 @@ namespace OpenTK.Graphics.ES20 /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] + [CLSCompliant(false)] public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] + [CLSCompliant(false)] public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] + [CLSCompliant(false)] public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] + [CLSCompliant(false)] public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] + [CLSCompliant(false)] public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] + [CLSCompliant(false)] public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] @@ -38150,18 +38802,21 @@ namespace OpenTK.Graphics.ES20 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] + [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] + [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] + [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -38174,198 +38829,212 @@ namespace OpenTK.Graphics.ES20 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] Int32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] out Int32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetBuffers([OutAttribute] Int32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] UInt32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] out UInt32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetBuffers([OutAttribute] UInt32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] Int32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] out Int32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgram([OutAttribute] Int32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] UInt32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] out UInt32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgram([OutAttribute] UInt32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetRenderbuffers([OutAttribute] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetRenderbuffers([OutAttribute] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] Int32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] out Int32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute] Int32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] UInt32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] out UInt32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute] UInt32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] @@ -38374,18 +39043,21 @@ namespace OpenTK.Graphics.ES20 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[] texels) where T10 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,] texels) where T10 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,,] texels) where T10 : struct { throw new NotImplementedException(); } @@ -38398,39 +39070,42 @@ namespace OpenTK.Graphics.ES20 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] + [CLSCompliant(false)] public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] + [CLSCompliant(false)] public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] @@ -38439,67 +39114,72 @@ namespace OpenTK.Graphics.ES20 /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute] Int32[] driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute] UInt32[] driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute] out Int32 driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute] out UInt32 driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute] Int32* driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute] UInt32* driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new NotImplementedException(); } } diff --git a/Source/OpenTK/Graphics/ES30/ES30.cs b/Source/OpenTK/Graphics/ES30/ES30.cs index 3ed36833..0c7e9a94 100644 --- a/Source/OpenTK/Graphics/ES30/ES30.cs +++ b/Source/OpenTK/Graphics/ES30/ES30.cs @@ -496,300 +496,323 @@ namespace OpenTK.Graphics.ES30 { /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] + [CLSCompliant(false)] public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] + [CLSCompliant(false)] public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitor(Int32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitor(UInt32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, Int32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, ref Int32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void DeletePerfMonitors(Int32 n, Int32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, UInt32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, ref UInt32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void DeletePerfMonitors(Int32 n, UInt32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] + [CLSCompliant(false)] public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] + [CLSCompliant(false)] public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] Int32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] out Int32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute] Int32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] UInt32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] out UInt32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute] UInt32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute] Int32[] data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute] out Int32 data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute] Int32* data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute] out UInt32 data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute] UInt32* data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(Int32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] Int32[] counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(Int32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] out Int32 counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] Int32* counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32[] counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] out UInt32 counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32* counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] Int32[] groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out Int32 groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] UInt32[] groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out UInt32 groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroups([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32* groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroups([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32* groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] Int32[] counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] out Int32 counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] Int32* counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] UInt32[] counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] out UInt32 counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] UInt32* counterList) { throw new NotImplementedException(); } } @@ -964,6 +987,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -998,6 +1022,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -1032,6 +1057,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -1130,6 +1156,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -1163,6 +1190,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -1196,6 +1224,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -1235,30 +1264,32 @@ namespace OpenTK.Graphics.ES30 /// [requires: ANGLE_translated_shader_source] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_translated_shader_source] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] + [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ANGLE_framebuffer_multisample] @@ -1338,6 +1369,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: ANGLE_instanced_arrays] @@ -1353,8 +1385,8 @@ namespace OpenTK.Graphics.ES30 /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } } @@ -1381,6 +1413,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1402,8 +1435,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1425,6 +1458,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1445,17 +1479,18 @@ namespace OpenTK.Graphics.ES30 /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_copy_texture_levels] [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] + [CLSCompliant(false)] public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } /// [requires: APPLE_copy_texture_levels] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] + [CLSCompliant(false)] public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1505,39 +1540,45 @@ namespace OpenTK.Graphics.ES30 /// [requires: APPLE_sync] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1570,6 +1611,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1602,6 +1644,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1633,8 +1676,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1666,6 +1709,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1697,6 +1741,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1727,8 +1772,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array to receive the values of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1829,6 +1874,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1850,8 +1896,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1873,6 +1919,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: APPLE_sync] @@ -1893,8 +1940,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } } @@ -1936,6 +1983,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] + [CLSCompliant(false)] public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -1951,8 +1999,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the shader object that is to be attached. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] + [CLSCompliant(false)] public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -1970,6 +2018,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -1986,8 +2035,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2004,6 +2053,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, Int32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2019,8 +2069,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2065,6 +2115,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] + [CLSCompliant(false)] public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2085,8 +2136,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a null terminated string containing the name of the vertex shader attribute variable to which index is to be bound. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] + [CLSCompliant(false)] public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2104,6 +2155,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES30.All target, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2120,8 +2172,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES30.All target, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2138,6 +2190,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES30.BufferTarget target, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2153,8 +2206,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.ES30.BufferTarget target, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2177,6 +2230,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2198,8 +2252,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2221,6 +2275,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2241,8 +2296,8 @@ namespace OpenTK.Graphics.ES30 /// The name of a buffer object to bind to the specified binding point. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2275,6 +2330,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2306,8 +2362,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2339,6 +2395,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2369,8 +2426,8 @@ namespace OpenTK.Graphics.ES30 /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2388,6 +2445,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES30.All target, Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2404,8 +2462,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES30.All target, UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2422,6 +2480,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2437,8 +2496,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of the framebuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2456,6 +2515,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES30.All target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2472,8 +2532,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES30.All target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2490,6 +2550,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2505,8 +2566,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of the renderbuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES30.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2523,6 +2584,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindSampler")] + [CLSCompliant(false)] public static void BindSampler(Int32 unit, Int32 sampler) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2538,8 +2600,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of a sampler. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindSampler")] + [CLSCompliant(false)] public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2557,6 +2619,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES30.All target, Int32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2573,8 +2636,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES30.All target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2591,6 +2654,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES30.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2606,8 +2670,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.ES30.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2625,6 +2689,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.ES30.All target, Int32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2641,8 +2706,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2659,6 +2724,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackTarget target, Int32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2674,8 +2740,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackTarget target, UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2687,6 +2753,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] + [CLSCompliant(false)] public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -2697,8 +2764,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of the vertex array to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] + [CLSCompliant(false)] public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -2999,6 +3066,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.ES30.All usage) where T2 : struct { throw new NotImplementedException(); } @@ -3028,6 +3096,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct { throw new NotImplementedException(); } @@ -3057,6 +3126,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct { throw new NotImplementedException(); } @@ -3140,6 +3210,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -3168,6 +3239,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -3196,6 +3268,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -3280,6 +3353,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -3309,6 +3383,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -3338,6 +3413,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -3421,6 +3497,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -3449,6 +3526,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -3477,6 +3555,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -3648,6 +3727,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3680,6 +3760,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3711,8 +3792,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3744,6 +3825,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3775,6 +3857,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3805,8 +3888,8 @@ namespace OpenTK.Graphics.ES30 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3839,6 +3922,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3871,6 +3955,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3902,8 +3987,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3935,6 +4020,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3966,6 +4052,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -3996,8 +4083,8 @@ namespace OpenTK.Graphics.ES30 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -4029,8 +4116,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -4062,8 +4149,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -4095,8 +4182,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -4127,8 +4214,8 @@ namespace OpenTK.Graphics.ES30 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -4159,8 +4246,8 @@ namespace OpenTK.Graphics.ES30 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -4191,8 +4278,8 @@ namespace OpenTK.Graphics.ES30 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -4248,6 +4335,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -4269,8 +4357,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -4292,6 +4380,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -4312,8 +4401,8 @@ namespace OpenTK.Graphics.ES30 /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -4341,6 +4430,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] + [CLSCompliant(false)] public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -4351,8 +4441,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the shader object to be compiled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] + [CLSCompliant(false)] public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -4447,6 +4537,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -4496,6 +4587,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -4545,6 +4637,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -4688,6 +4781,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -4736,6 +4830,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -4784,6 +4879,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -4938,6 +5034,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -4992,6 +5089,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -5046,6 +5144,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -5204,6 +5303,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -5257,6 +5357,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -5310,6 +5411,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -5469,6 +5571,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -5523,6 +5626,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -5577,6 +5681,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -5735,6 +5840,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -5788,6 +5894,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -5841,6 +5948,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -6010,6 +6118,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -6069,6 +6178,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6128,6 +6238,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6301,6 +6412,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -6359,6 +6471,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6417,6 +6530,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6883,6 +6997,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -6901,6 +7016,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -6919,6 +7035,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -6976,6 +7093,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7013,6 +7131,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7049,8 +7168,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7087,8 +7206,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7125,8 +7244,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7163,8 +7282,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7201,6 +7320,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7237,6 +7357,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7272,8 +7393,8 @@ namespace OpenTK.Graphics.ES30 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7309,8 +7430,8 @@ namespace OpenTK.Graphics.ES30 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7346,8 +7467,8 @@ namespace OpenTK.Graphics.ES30 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7383,8 +7504,8 @@ namespace OpenTK.Graphics.ES30 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// @@ -7422,6 +7543,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// @@ -7458,8 +7580,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, UInt32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// @@ -7496,6 +7618,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, Int32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// @@ -7531,8 +7654,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, UInt32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7549,6 +7672,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(Int32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7564,8 +7688,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7582,6 +7706,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7598,6 +7723,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref Int32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7613,8 +7739,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, Int32* buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7630,8 +7756,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7647,8 +7773,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7664,8 +7790,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7682,6 +7808,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffer(Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7697,8 +7824,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffer(UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7715,6 +7842,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7731,6 +7859,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7746,8 +7875,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7763,8 +7892,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7780,8 +7909,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7797,8 +7926,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7810,6 +7939,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7820,8 +7950,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] + [CLSCompliant(false)] public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -7838,6 +7968,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQuery(Int32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -7853,8 +7984,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQuery(UInt32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -7871,6 +8002,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -7887,6 +8019,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -7902,8 +8035,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -7919,8 +8052,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -7936,8 +8069,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -7953,8 +8086,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7971,6 +8104,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -7986,8 +8120,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8004,6 +8138,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8020,6 +8155,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8035,8 +8171,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8052,8 +8188,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8069,8 +8205,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8086,8 +8222,8 @@ namespace OpenTK.Graphics.ES30 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8104,6 +8240,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSampler(Int32 samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8119,8 +8256,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSampler(UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8137,6 +8274,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, Int32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8153,6 +8291,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, ref Int32 samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8168,8 +8307,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static unsafe void DeleteSamplers(Int32 count, Int32* samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8185,8 +8324,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, UInt32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8202,8 +8341,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, ref UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8219,8 +8358,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static unsafe void DeleteSamplers(Int32 count, UInt32* samplers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8232,6 +8371,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] + [CLSCompliant(false)] public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8242,8 +8382,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the shader object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] + [CLSCompliant(false)] public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8271,6 +8411,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(Int32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8286,8 +8427,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(UInt32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8304,6 +8445,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, Int32[] textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8320,6 +8462,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8335,8 +8478,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, Int32* textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8352,8 +8495,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8369,8 +8512,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8386,8 +8529,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, UInt32* textures) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8404,6 +8547,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedback(Int32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8419,8 +8563,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedback(UInt32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8437,6 +8581,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8453,6 +8598,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8468,8 +8614,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void DeleteTransformFeedbacks(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8485,8 +8631,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8502,8 +8648,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8519,8 +8665,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void DeleteTransformFeedbacks(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8537,6 +8683,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArray(Int32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8552,8 +8699,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArray(UInt32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8570,6 +8717,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, Int32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8586,6 +8734,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref Int32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8601,8 +8750,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, Int32* arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8618,8 +8767,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8635,8 +8784,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref UInt32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8652,8 +8801,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8720,6 +8869,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] + [CLSCompliant(false)] public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8735,8 +8885,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the shader object to be detached. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] + [CLSCompliant(false)] public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8750,11 +8900,12 @@ namespace OpenTK.Graphics.ES30 /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -8868,6 +9019,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All[] bufs) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8885,6 +9037,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.All bufs) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8901,8 +9054,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All* bufs) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8919,6 +9072,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8935,6 +9089,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -8950,8 +9105,8 @@ namespace OpenTK.Graphics.ES30 /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -9006,6 +9161,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -9035,6 +9191,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -9064,6 +9221,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -9147,6 +9305,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -9175,6 +9334,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -9203,6 +9363,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -9297,6 +9458,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -9331,6 +9493,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -9365,6 +9528,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -9463,6 +9627,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -9496,6 +9661,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -9529,6 +9695,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -9601,6 +9768,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -9638,6 +9806,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -9677,6 +9846,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -9716,6 +9886,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -9755,6 +9926,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -9793,8 +9965,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -9831,8 +10003,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -9871,8 +10043,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -9911,8 +10083,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -9951,8 +10123,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -9991,6 +10163,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -10027,6 +10200,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -10065,6 +10239,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -10103,6 +10278,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -10141,6 +10317,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -10178,8 +10355,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -10215,8 +10392,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -10254,8 +10431,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -10293,8 +10470,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -10332,8 +10509,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -10380,6 +10557,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10390,8 +10568,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the index of the generic vertex attribute to be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -10520,6 +10698,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10546,8 +10725,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10574,6 +10753,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10599,28 +10779,30 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget2d textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget2d textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -10653,6 +10835,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -10684,8 +10867,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -10717,6 +10900,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -10747,8 +10931,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the layer of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10788,6 +10972,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static Int32 GenBuffer() { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10804,6 +10989,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10820,6 +11006,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10835,8 +11022,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10852,8 +11039,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10869,8 +11056,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10886,8 +11073,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10927,6 +11114,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static Int32 GenFramebuffer() { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10943,6 +11131,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10959,6 +11148,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10974,8 +11164,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -10991,8 +11181,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11008,8 +11198,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11025,8 +11215,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11043,6 +11233,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static Int32 GenQuery() { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11059,6 +11250,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11075,6 +11267,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11090,8 +11283,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11107,8 +11300,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11124,8 +11317,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11141,8 +11334,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11159,6 +11352,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11175,6 +11369,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11191,6 +11386,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11206,8 +11402,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11223,8 +11419,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11240,8 +11436,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11257,8 +11453,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11275,6 +11471,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static Int32 GenSampler() { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11291,6 +11488,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] Int32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11307,6 +11505,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] out Int32 samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11322,8 +11521,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static unsafe void GenSamplers(Int32 count, [OutAttribute] Int32* samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11339,8 +11538,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] UInt32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11356,8 +11555,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] out UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11373,8 +11572,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static unsafe void GenSamplers(Int32 count, [OutAttribute] UInt32* samplers) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11391,6 +11590,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static Int32 GenTexture() { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11407,6 +11607,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11423,6 +11624,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11438,8 +11640,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11455,8 +11657,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11472,8 +11674,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11489,8 +11691,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11507,6 +11709,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11523,6 +11726,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11539,6 +11743,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11554,8 +11759,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11571,8 +11776,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11588,8 +11793,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11605,8 +11810,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11623,6 +11828,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static Int32 GenVertexArray() { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11639,6 +11845,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11655,6 +11862,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11670,8 +11878,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11687,8 +11895,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11704,8 +11912,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -11721,8 +11929,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11764,6 +11972,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11806,6 +12015,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11846,8 +12056,8 @@ namespace OpenTK.Graphics.ES30 /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11889,8 +12099,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11931,8 +12141,8 @@ namespace OpenTK.Graphics.ES30 /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -11974,8 +12184,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12016,8 +12226,8 @@ namespace OpenTK.Graphics.ES30 /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12059,8 +12269,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12102,6 +12312,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12144,6 +12355,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12184,8 +12396,8 @@ namespace OpenTK.Graphics.ES30 /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12227,8 +12439,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12269,8 +12481,8 @@ namespace OpenTK.Graphics.ES30 /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12312,8 +12524,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12354,8 +12566,8 @@ namespace OpenTK.Graphics.ES30 /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -12397,8 +12609,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12425,6 +12637,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12451,6 +12664,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12476,8 +12690,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12505,6 +12719,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12532,6 +12747,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12558,8 +12774,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12585,8 +12801,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12612,8 +12828,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12639,8 +12855,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12667,8 +12883,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12695,8 +12911,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12723,8 +12939,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12756,6 +12972,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12786,8 +13003,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array of characters to receive the name of the uniform block at uniformBlockIndex. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12818,8 +13035,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array of characters to receive the name of the uniform block at uniformBlockIndex. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12850,8 +13067,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array of characters to receive the name of the uniform block at uniformBlockIndex. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12883,6 +13100,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12915,6 +13133,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12946,6 +13165,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, ref Int32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -12978,6 +13198,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, ref Int32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13008,8 +13229,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13041,8 +13262,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13073,8 +13294,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, UInt32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13106,8 +13327,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, UInt32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13138,8 +13359,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, ref UInt32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13171,8 +13392,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, ref UInt32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13203,8 +13424,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, UInt32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13236,8 +13457,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, UInt32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13264,6 +13485,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] Int32[] shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13290,6 +13512,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out Int32 shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13315,8 +13538,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32* shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13342,8 +13565,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] UInt32[] shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13369,8 +13592,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out UInt32 shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13396,8 +13619,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32* shaders) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13414,6 +13637,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13429,46 +13653,52 @@ namespace OpenTK.Graphics.ES30 /// Points to a null terminated string containing the name of the attribute variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static bool GetBoolean(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static bool GetBoolean(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13491,6 +13721,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13513,6 +13744,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13534,8 +13766,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13557,6 +13789,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13578,6 +13811,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13598,8 +13832,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13622,6 +13856,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13644,6 +13879,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13665,8 +13901,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13688,6 +13924,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13709,6 +13946,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -13729,8 +13967,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -13775,6 +14013,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } @@ -13799,6 +14038,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -13823,6 +14063,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -13891,6 +14132,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } @@ -13914,6 +14156,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -13937,6 +14180,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -14009,6 +14253,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All[] sources, [OutAttribute] OpenTK.Graphics.ES30.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES30.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14056,6 +14301,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.All sources, [OutAttribute] out OpenTK.Graphics.ES30.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES30.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14102,8 +14348,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All* sources, [OutAttribute] OpenTK.Graphics.ES30.All* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.ES30.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14150,6 +14396,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14196,6 +14443,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14241,8 +14489,8 @@ namespace OpenTK.Graphics.ES30 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14289,8 +14537,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All[] sources, [OutAttribute] OpenTK.Graphics.ES30.All[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.ES30.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14337,8 +14585,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.All sources, [OutAttribute] out OpenTK.Graphics.ES30.All types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.ES30.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14385,8 +14633,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All* sources, [OutAttribute] OpenTK.Graphics.ES30.All* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.ES30.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14432,8 +14680,8 @@ namespace OpenTK.Graphics.ES30 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14479,8 +14727,8 @@ namespace OpenTK.Graphics.ES30 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// @@ -14526,8 +14774,8 @@ namespace OpenTK.Graphics.ES30 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14539,39 +14787,45 @@ namespace OpenTK.Graphics.ES30 /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static Single GetFloat(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static Single GetFloat(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -14588,6 +14842,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] + [CLSCompliant(false)] public static Int32 GetFragDataLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -14603,8 +14858,8 @@ namespace OpenTK.Graphics.ES30 /// The name of the user-defined varying out variable whose binding to query /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] + [CLSCompliant(false)] public static Int32 GetFragDataLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14632,6 +14887,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14659,6 +14915,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14685,8 +14942,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14713,6 +14970,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14739,6 +14997,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14764,208 +15023,228 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable receive the value of pname for attachment. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static Int32 GetInteger(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static Int32 GetInteger(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -14998,6 +15277,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -15030,6 +15310,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -15061,8 +15342,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static unsafe void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -15094,6 +15375,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -15125,6 +15407,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -15155,8 +15438,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static unsafe void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// @@ -15189,6 +15472,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15221,6 +15505,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15252,8 +15537,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15285,8 +15570,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15318,8 +15603,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15351,8 +15636,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15384,6 +15669,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15415,6 +15701,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15445,8 +15732,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15477,8 +15764,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15509,8 +15796,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15541,8 +15828,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15569,6 +15856,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15595,6 +15883,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15620,8 +15909,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// @@ -15648,6 +15937,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15676,6 +15966,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15703,8 +15994,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15733,6 +16024,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15761,6 +16053,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15788,8 +16081,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15818,6 +16111,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15846,6 +16140,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15873,8 +16168,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15903,6 +16198,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15931,6 +16227,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15958,8 +16255,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -15996,6 +16293,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } @@ -16015,6 +16313,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -16034,6 +16333,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -16087,6 +16387,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } @@ -16105,6 +16406,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -16123,6 +16425,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -16174,6 +16477,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -16205,6 +16509,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16238,6 +16543,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16271,6 +16577,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16304,6 +16611,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -16336,8 +16644,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -16368,8 +16676,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16402,8 +16710,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16436,8 +16744,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16470,8 +16778,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -16504,8 +16812,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -16536,8 +16844,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16570,8 +16878,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16604,8 +16912,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16638,8 +16946,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -16672,8 +16980,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -16704,8 +17012,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16738,8 +17046,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16772,8 +17080,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -16806,8 +17114,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -16836,6 +17144,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16861,8 +17170,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16888,8 +17197,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16915,8 +17224,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16939,6 +17248,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16961,6 +17271,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -16982,8 +17293,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17005,6 +17316,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17026,6 +17338,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17046,8 +17359,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17069,8 +17382,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17092,8 +17405,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17115,8 +17428,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17137,8 +17450,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17159,8 +17472,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17181,8 +17494,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17205,6 +17518,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17227,6 +17541,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17248,8 +17563,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17271,6 +17586,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17292,6 +17608,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17312,8 +17629,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17336,6 +17653,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17358,6 +17676,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17379,8 +17698,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17402,6 +17721,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17423,6 +17743,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17443,8 +17764,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17466,8 +17787,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17489,8 +17810,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17512,8 +17833,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17534,8 +17855,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17556,8 +17877,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17578,8 +17899,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17602,6 +17923,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17624,6 +17946,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17645,8 +17968,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17668,6 +17991,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17689,6 +18013,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -17709,8 +18034,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array to receive the value of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17733,6 +18058,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17755,6 +18081,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17776,8 +18103,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17799,6 +18126,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17820,6 +18148,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17840,8 +18169,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17863,8 +18192,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17886,8 +18215,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17909,8 +18238,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17931,8 +18260,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17953,8 +18282,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17975,8 +18304,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -17999,6 +18328,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18021,6 +18351,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18042,8 +18373,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18065,6 +18396,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18086,6 +18418,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18106,8 +18439,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18129,8 +18462,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18152,8 +18485,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18175,8 +18508,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18197,8 +18530,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18219,8 +18552,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18241,8 +18574,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18269,6 +18602,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18294,8 +18628,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18321,8 +18655,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18348,8 +18682,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18372,6 +18706,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18394,6 +18729,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18415,8 +18751,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18438,6 +18774,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18459,6 +18796,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18479,8 +18817,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18502,8 +18840,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18525,8 +18863,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18548,8 +18886,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18570,8 +18908,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18592,8 +18930,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18614,8 +18952,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18643,6 +18981,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute] Int32[] range, [OutAttribute] Int32[] precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18670,6 +19009,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute] out Int32 range, [OutAttribute] out Int32 precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18696,8 +19036,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute] Int32* range, [OutAttribute] Int32* precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18724,6 +19064,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute] Int32[] range, [OutAttribute] Int32[] precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18750,6 +19091,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute] out Int32 range, [OutAttribute] out Int32 precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18775,8 +19117,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an integer into which the numeric precision of the implementation is written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute] Int32* range, [OutAttribute] Int32* precision) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18803,6 +19145,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18828,8 +19171,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18855,8 +19198,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18882,8 +19225,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -18934,6 +19277,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.ES30.All name, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18950,8 +19294,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.ES30.All name, UInt32 index) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18968,6 +19312,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.ES30.StringNameIndexed name, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -18983,8 +19328,8 @@ namespace OpenTK.Graphics.ES30 /// For glGetStringi, specifies the index of the string to return. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.ES30.StringNameIndexed name, UInt32 index) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19017,6 +19362,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19049,6 +19395,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19080,8 +19427,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19113,6 +19460,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19144,6 +19492,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19174,8 +19523,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array to receive the values of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19198,6 +19547,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19220,6 +19570,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19241,8 +19592,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19264,6 +19615,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19285,6 +19637,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19305,8 +19658,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19329,6 +19682,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19351,6 +19705,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19372,8 +19727,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19395,6 +19750,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19416,6 +19772,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19436,8 +19793,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19480,6 +19837,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19521,6 +19879,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19562,8 +19921,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19604,8 +19963,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19647,8 +20006,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19689,8 +20048,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19732,8 +20091,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.All* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19774,8 +20133,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19792,6 +20151,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] + [CLSCompliant(false)] public static Int32 GetUniformBlockIndex(Int32 program, String uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19807,8 +20167,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array of characters to containing the name of the uniform block whose index to retrieve. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] + [CLSCompliant(false)] public static Int32 GetUniformBlockIndex(UInt32 program, String uniformBlockName) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19830,6 +20190,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19851,6 +20212,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19871,8 +20233,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19893,8 +20255,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19915,8 +20277,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -19937,8 +20299,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19965,6 +20327,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(Int32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] Int32[] uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -19991,6 +20354,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(Int32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] out Int32 uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -20016,8 +20380,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] Int32* uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -20043,8 +20407,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] UInt32[] uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -20070,8 +20434,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] out UInt32 uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -20097,8 +20461,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] UInt32* uniformIndices) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20120,6 +20484,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20141,6 +20506,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20161,8 +20527,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20183,8 +20549,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20205,8 +20571,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20227,8 +20593,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20245,6 +20611,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20260,8 +20627,8 @@ namespace OpenTK.Graphics.ES30 /// Points to a null terminated string containing the name of the uniform variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -20282,8 +20649,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -20304,8 +20671,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -20326,8 +20693,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20350,6 +20717,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20372,6 +20740,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20393,8 +20762,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20416,6 +20785,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20437,6 +20807,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20457,8 +20828,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20480,8 +20851,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20503,8 +20874,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20526,8 +20897,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20548,8 +20919,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20570,8 +20941,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20592,37 +20963,38 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20645,6 +21017,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20667,6 +21040,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20688,8 +21062,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20711,6 +21085,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20732,6 +21107,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20752,8 +21128,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20775,8 +21151,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20798,8 +21174,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20821,8 +21197,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20843,8 +21219,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20865,8 +21241,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20887,8 +21263,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20911,6 +21287,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -20933,6 +21310,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -20957,6 +21335,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -20981,6 +21360,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21005,6 +21385,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21028,6 +21409,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21049,6 +21431,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21072,6 +21455,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21095,6 +21479,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21118,6 +21503,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21141,8 +21527,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21164,8 +21550,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21189,8 +21575,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21214,8 +21600,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21239,8 +21625,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21263,8 +21649,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21285,8 +21671,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21309,8 +21695,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21333,8 +21719,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21357,8 +21743,8 @@ namespace OpenTK.Graphics.ES30 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -21416,6 +21802,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, OpenTK.Graphics.ES30.All[] attachments) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21438,6 +21825,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, ref OpenTK.Graphics.ES30.All attachments) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21459,8 +21847,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, OpenTK.Graphics.ES30.All* attachments) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21482,6 +21870,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.ES30.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21503,6 +21892,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, ref OpenTK.Graphics.ES30.FramebufferAttachment attachments) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21523,8 +21913,8 @@ namespace OpenTK.Graphics.ES30 /// The address of an array identifying the attachments to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.ES30.FramebufferAttachment* attachments) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21567,6 +21957,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, OpenTK.Graphics.ES30.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21609,6 +22000,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, ref OpenTK.Graphics.ES30.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21650,8 +22042,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, OpenTK.Graphics.ES30.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21693,6 +22085,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.ES30.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21734,6 +22127,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, ref OpenTK.Graphics.ES30.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21774,8 +22168,8 @@ namespace OpenTK.Graphics.ES30 /// The height of the region to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.ES30.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21787,6 +22181,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21797,8 +22192,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21843,6 +22238,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] + [CLSCompliant(false)] public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21853,8 +22249,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a framebuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] + [CLSCompliant(false)] public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21866,6 +22262,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] + [CLSCompliant(false)] public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21876,8 +22273,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a potential program object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] + [CLSCompliant(false)] public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21889,6 +22286,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsQuery")] + [CLSCompliant(false)] public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21899,8 +22297,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsQuery")] + [CLSCompliant(false)] public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21912,6 +22310,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] + [CLSCompliant(false)] public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21922,8 +22321,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a renderbuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] + [CLSCompliant(false)] public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21935,6 +22334,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSampler")] + [CLSCompliant(false)] public static bool IsSampler(Int32 sampler) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21945,8 +22345,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a sampler object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSampler")] + [CLSCompliant(false)] public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21958,6 +22358,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] + [CLSCompliant(false)] public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -21968,8 +22369,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a potential shader object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] + [CLSCompliant(false)] public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -21992,6 +22393,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -22002,8 +22404,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22015,6 +22417,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsTransformFeedback")] + [CLSCompliant(false)] public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22025,8 +22428,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a transform feedback object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsTransformFeedback")] + [CLSCompliant(false)] public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22038,6 +22441,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] + [CLSCompliant(false)] public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22048,8 +22452,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a vertex array object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] + [CLSCompliant(false)] public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -22072,6 +22476,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] + [CLSCompliant(false)] public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -22082,8 +22487,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the handle of the program object to be linked. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] + [CLSCompliant(false)] public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22164,6 +22569,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// @@ -22190,8 +22596,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// @@ -22218,6 +22624,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// @@ -22243,8 +22650,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string containing the label to assign to the object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// @@ -22287,6 +22694,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -22310,6 +22718,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -22333,6 +22742,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -22445,6 +22855,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22471,6 +22882,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -22499,6 +22911,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -22527,6 +22940,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -22555,6 +22969,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -22582,8 +22997,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22609,8 +23024,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -22638,8 +23053,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -22667,8 +23082,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -22696,8 +23111,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -22722,6 +23137,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22743,6 +23159,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22764,8 +23181,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22786,8 +23203,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// @@ -22814,6 +23231,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } /// @@ -22839,8 +23257,8 @@ namespace OpenTK.Graphics.ES30 /// The a string containing the message to be sent to the debug output stream. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -22928,6 +23346,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -22962,6 +23381,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -22996,6 +23416,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -23094,6 +23515,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -23127,6 +23549,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -23160,6 +23583,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -23366,6 +23790,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23392,6 +23817,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23418,8 +23844,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Single param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23445,8 +23871,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23474,6 +23900,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single[] param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23500,8 +23927,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single* param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23528,6 +23955,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single[] param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23553,8 +23981,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single* param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23581,8 +24009,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Single[] param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23609,8 +24037,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Single* param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23636,8 +24064,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single[] param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23663,8 +24091,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single* param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23692,6 +24120,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23718,6 +24147,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23744,8 +24174,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23771,8 +24201,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23800,6 +24230,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23826,8 +24257,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23854,6 +24285,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23879,8 +24311,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23907,8 +24339,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23935,8 +24367,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23962,8 +24394,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -23989,8 +24421,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -24039,6 +24471,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -24071,6 +24504,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24105,6 +24539,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24139,6 +24574,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24173,6 +24609,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24206,6 +24643,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -24237,6 +24675,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24270,6 +24709,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24303,6 +24743,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24336,6 +24777,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24370,6 +24812,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -24402,6 +24845,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24436,6 +24880,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24470,6 +24915,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24504,6 +24950,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24537,6 +24984,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -24568,6 +25016,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24601,6 +25050,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24634,6 +25084,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24667,6 +25118,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24700,8 +25152,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -24733,8 +25185,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24768,8 +25220,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24803,8 +25255,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24838,8 +25290,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24872,8 +25324,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -24904,8 +25356,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24938,8 +25390,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -24972,8 +25424,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25006,8 +25458,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25041,8 +25493,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -25074,8 +25526,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25109,8 +25561,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25144,8 +25596,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25179,8 +25631,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25213,8 +25665,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -25245,8 +25697,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25279,8 +25731,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25313,8 +25765,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25347,8 +25799,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25382,8 +25834,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -25415,8 +25867,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25450,8 +25902,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25485,8 +25937,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25520,8 +25972,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25554,8 +26006,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -25586,8 +26038,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25620,8 +26072,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25654,8 +26106,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25688,8 +26140,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25723,8 +26175,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -25756,8 +26208,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25791,8 +26243,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25826,8 +26278,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25861,8 +26313,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25895,8 +26347,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -25927,8 +26379,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25961,8 +26413,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -25995,8 +26447,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -26029,8 +26481,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -26059,6 +26511,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shader, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26085,6 +26538,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shader, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26110,8 +26564,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static unsafe void ShaderSource(Int32 shader, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26137,8 +26591,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shader, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26164,8 +26618,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shader, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26191,8 +26645,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static unsafe void ShaderSource(UInt32 shader, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26215,6 +26669,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26236,8 +26691,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26259,6 +26714,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26279,8 +26735,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26308,6 +26764,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26334,8 +26791,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26362,6 +26819,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26387,8 +26845,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26400,6 +26858,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26410,8 +26869,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26429,6 +26888,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26445,8 +26905,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26463,6 +26923,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES30.StencilFace face, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26478,8 +26939,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.ES30.StencilFace face, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -26680,6 +27141,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -26734,6 +27196,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -26788,6 +27251,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -26946,6 +27410,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -26999,6 +27464,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -27052,6 +27518,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -27221,6 +27688,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -27280,6 +27748,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -27339,6 +27808,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -27512,6 +27982,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -27570,6 +28041,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -27628,6 +28100,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -27777,6 +28250,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -27806,8 +28280,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -27837,6 +28311,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -27865,8 +28340,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -27956,6 +28431,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -27985,8 +28461,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -28016,6 +28492,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -28044,8 +28521,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -28286,6 +28763,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -28340,6 +28818,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -28394,6 +28873,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -28552,6 +29032,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -28605,6 +29086,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -28658,6 +29140,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -28837,6 +29320,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -28901,6 +29385,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -28965,6 +29450,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -29153,6 +29639,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -29216,6 +29703,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -29279,6 +29767,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -29371,6 +29860,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(Int32 program, Int32 count, String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -29397,6 +29887,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(Int32 program, Int32 count, String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -29423,8 +29914,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(UInt32 program, Int32 count, String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -29450,8 +29941,8 @@ namespace OpenTK.Graphics.ES30 /// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(UInt32 program, Int32 count, String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -29520,6 +30011,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -29554,6 +30046,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -29587,8 +30080,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -29657,6 +30150,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -29691,6 +30185,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -29724,8 +30219,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -29759,8 +30254,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -29794,8 +30289,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -29829,8 +30324,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -29864,8 +30359,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -29934,6 +30429,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -29968,6 +30464,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30001,8 +30498,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30071,6 +30568,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30104,8 +30602,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -30139,8 +30637,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2ui")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -30174,8 +30672,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -30209,8 +30707,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -30244,8 +30742,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30314,6 +30812,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30348,6 +30847,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30381,8 +30881,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30451,6 +30951,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30485,6 +30986,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30518,8 +31020,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -30553,8 +31055,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3ui")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -30588,8 +31090,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -30623,8 +31125,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -30658,8 +31160,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30728,6 +31230,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30762,6 +31265,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30795,8 +31299,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30865,6 +31369,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30899,6 +31404,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -30932,8 +31438,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -30967,8 +31473,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4ui")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -31002,8 +31508,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -31037,8 +31543,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -31072,8 +31578,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -31095,6 +31601,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformBlockBinding")] + [CLSCompliant(false)] public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -31115,125 +31622,143 @@ namespace OpenTK.Graphics.ES30 /// Specifies the binding point to which to bind the uniform block with index uniformBlockIndex within program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformBlockBinding")] + [CLSCompliant(false)] public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -31254,6 +31779,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] + [CLSCompliant(false)] public static void UseProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31264,8 +31790,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the handle of the program object whose executables are to be used as part of current rendering state. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] + [CLSCompliant(false)] public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31277,6 +31803,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] + [CLSCompliant(false)] public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31287,8 +31814,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the handle of the program object to be validated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] + [CLSCompliant(false)] public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31325,6 +31852,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31360,8 +31888,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31397,8 +31925,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31434,8 +31962,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31472,6 +32000,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31507,8 +32036,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31545,6 +32074,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31581,6 +32111,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31616,8 +32147,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31653,8 +32184,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31690,8 +32221,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31727,8 +32258,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31765,6 +32296,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31800,8 +32332,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31838,6 +32370,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31874,6 +32407,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31909,8 +32443,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31946,8 +32480,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -31983,8 +32517,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32020,8 +32554,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32058,6 +32592,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32093,8 +32628,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32131,6 +32666,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32167,6 +32703,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32202,8 +32739,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32239,8 +32776,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32276,8 +32813,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32313,8 +32850,8 @@ namespace OpenTK.Graphics.ES30 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -32331,6 +32868,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribDivisor")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -32346,75 +32884,80 @@ namespace OpenTK.Graphics.ES30 /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribDivisor")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ui")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -32422,6 +32965,7 @@ namespace OpenTK.Graphics.ES30 /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -32429,6 +32973,7 @@ namespace OpenTK.Graphics.ES30 /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -32436,105 +32981,111 @@ namespace OpenTK.Graphics.ES30 /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } @@ -32574,6 +33125,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32611,6 +33163,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -32650,6 +33203,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -32689,6 +33243,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -32728,6 +33283,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -32766,6 +33322,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32802,6 +33359,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -32840,6 +33398,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -32878,6 +33437,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -32916,6 +33476,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -32954,8 +33515,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -32992,8 +33553,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -33032,8 +33593,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -33072,8 +33633,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -33112,8 +33673,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -33151,8 +33712,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -33188,8 +33749,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -33227,8 +33788,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -33266,8 +33827,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -33305,8 +33866,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -33347,6 +33908,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -33368,8 +33930,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -33391,6 +33953,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.0 and ES_VERSION_3_0] @@ -33411,19 +33974,20 @@ namespace OpenTK.Graphics.ES30 /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } public static partial class Ext { /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] + [CLSCompliant(false)] public static void ActiveProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] + [CLSCompliant(false)] public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33440,6 +34004,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] + [CLSCompliant(false)] public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33455,8 +34020,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the program object to set as the active program pipeline object pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] + [CLSCompliant(false)] public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33474,6 +34039,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33490,8 +34056,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33508,6 +34074,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33523,8 +34090,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33536,6 +34103,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] + [CLSCompliant(false)] public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33546,8 +34114,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of the pipeline object to bind to the context. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] + [CLSCompliant(false)] public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_blend_minmax] @@ -33627,11 +34195,12 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(Int32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33648,6 +34217,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33664,6 +34234,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref Int32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33679,8 +34250,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, Int32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33696,8 +34267,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33713,8 +34284,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -33730,17 +34301,18 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQuery(Int32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQuery(UInt32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33757,6 +34329,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33773,6 +34346,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33788,8 +34362,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33805,8 +34379,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33822,8 +34396,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -33839,21 +34413,23 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: EXT_discard_framebuffer] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] + [CLSCompliant(false)] public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, OpenTK.Graphics.ES30.All[] attachments) { throw new NotImplementedException(); } /// [requires: EXT_discard_framebuffer] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] + [CLSCompliant(false)] public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, ref OpenTK.Graphics.ES30.All attachments) { throw new NotImplementedException(); } /// [requires: EXT_discard_framebuffer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] + [CLSCompliant(false)] public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, OpenTK.Graphics.ES30.All* attachments) { throw new NotImplementedException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] @@ -33924,6 +34500,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All[] bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -33941,6 +34518,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.All bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -33957,8 +34535,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All* bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -33975,6 +34553,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -33991,6 +34570,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers] @@ -34006,21 +34586,23 @@ namespace OpenTK.Graphics.ES30 /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] + [CLSCompliant(false)] public static void DrawBuffersIndexed(Int32 n, OpenTK.Graphics.ES30.All[] location, Int32[] indices) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] + [CLSCompliant(false)] public static void DrawBuffersIndexed(Int32 n, ref OpenTK.Graphics.ES30.All location, ref Int32 indices) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] + [CLSCompliant(false)] public static unsafe void DrawBuffersIndexed(Int32 n, OpenTK.Graphics.ES30.All* location, Int32* indices) { throw new NotImplementedException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] @@ -34085,6 +34667,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -34119,6 +34702,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -34153,6 +34737,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -34251,6 +34836,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -34284,6 +34870,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -34317,6 +34904,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -34408,15 +34996,17 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_multisampled_render_to_texture] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: EXT_multisampled_render_to_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -34433,6 +35023,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -34449,6 +35040,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -34464,8 +35056,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -34481,8 +35073,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -34498,8 +35090,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -34515,12 +35107,13 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static Int32 GenQuery() { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -34537,6 +35130,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -34553,6 +35147,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -34568,8 +35163,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -34585,8 +35180,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -34602,8 +35197,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -34619,8 +35214,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: EXT_robustness] @@ -34630,119 +35225,127 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -34774,6 +35377,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -34805,6 +35409,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -34835,8 +35440,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -34867,8 +35472,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -34899,8 +35504,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -34931,8 +35536,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -34959,6 +35564,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -34985,6 +35591,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35010,8 +35617,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35037,8 +35644,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35064,8 +35671,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35091,8 +35698,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35114,6 +35721,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35135,6 +35743,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35155,8 +35764,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35177,8 +35786,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35199,8 +35808,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -35221,37 +35830,41 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35274,6 +35887,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35296,6 +35910,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35317,8 +35932,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35340,6 +35955,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35361,6 +35977,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35381,8 +35998,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35404,8 +36021,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35427,8 +36044,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35450,8 +36067,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35472,8 +36089,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35494,8 +36111,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35516,8 +36133,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35540,6 +36157,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35562,6 +36180,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35583,8 +36202,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35606,6 +36225,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35627,6 +36247,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35647,8 +36268,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35670,8 +36291,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35693,8 +36314,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35716,8 +36337,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35738,8 +36359,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35760,8 +36381,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35782,8 +36403,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35805,8 +36426,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35828,8 +36449,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35851,8 +36472,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35873,8 +36494,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35895,8 +36516,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -35917,8 +36538,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -35940,8 +36561,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -35963,8 +36584,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -35986,8 +36607,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -36008,8 +36629,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -36030,8 +36651,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -36052,8 +36673,8 @@ namespace OpenTK.Graphics.ES30 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_debug_marker] @@ -36069,6 +36690,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] + [CLSCompliant(false)] public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -36079,8 +36701,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a program pipeline object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] + [CLSCompliant(false)] public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -36092,6 +36714,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] + [CLSCompliant(false)] public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] @@ -36102,17 +36725,18 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] + [CLSCompliant(false)] public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] + [CLSCompliant(false)] public static void LabelObject(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] + [CLSCompliant(false)] public static void LabelObject(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -36140,6 +36764,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -36166,8 +36791,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -36194,6 +36819,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } /// [requires: EXT_map_buffer_range] @@ -36219,8 +36845,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a combination of access flags indicating the desired access to the range. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36248,6 +36874,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36275,6 +36902,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36301,8 +36929,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36329,6 +36957,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36355,6 +36984,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36380,8 +37010,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size of the first and count /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36414,6 +37044,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32[] count, OpenTK.Graphics.ES30.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36446,6 +37077,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36480,6 +37112,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36514,6 +37147,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36548,6 +37182,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36582,6 +37217,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, ref Int32 count, OpenTK.Graphics.ES30.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36614,6 +37250,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36648,6 +37285,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36682,6 +37320,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36716,6 +37355,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36749,8 +37389,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32* count, OpenTK.Graphics.ES30.All type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36782,8 +37422,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36817,8 +37457,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36852,8 +37492,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36887,8 +37527,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36922,6 +37562,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -36953,6 +37594,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -36986,6 +37628,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37019,6 +37662,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37052,6 +37696,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37085,6 +37730,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -37116,6 +37762,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37149,6 +37796,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37182,6 +37830,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37215,6 +37864,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37247,8 +37897,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -37279,8 +37929,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37313,8 +37963,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37347,8 +37997,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37381,8 +38031,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -37411,6 +38061,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37432,6 +38083,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37453,8 +38105,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37475,8 +38127,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37516,6 +38168,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37554,8 +38207,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37595,6 +38248,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37634,6 +38288,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37672,8 +38327,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37712,8 +38367,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37752,8 +38407,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37792,8 +38447,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37833,6 +38488,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37871,8 +38527,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37912,6 +38568,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37951,6 +38608,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -37989,8 +38647,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38029,8 +38687,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38069,8 +38727,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38109,8 +38767,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38149,8 +38807,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38189,8 +38847,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38229,8 +38887,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38269,8 +38927,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38310,6 +38968,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38348,8 +39007,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38389,6 +39048,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38428,6 +39088,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38466,8 +39127,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38506,8 +39167,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38546,8 +39207,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38586,8 +39247,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38627,6 +39288,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38665,8 +39327,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38706,6 +39368,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38744,8 +39407,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38784,8 +39447,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38824,8 +39487,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38864,8 +39527,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38904,8 +39567,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38944,8 +39607,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -38984,8 +39647,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39025,6 +39688,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39063,8 +39727,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39104,6 +39768,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39143,6 +39808,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39181,8 +39847,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39221,8 +39887,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39261,8 +39927,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39301,8 +39967,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39342,6 +40008,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39380,8 +40047,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39421,6 +40088,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39460,6 +40128,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39498,8 +40167,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39538,8 +40207,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39578,8 +40247,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39618,8 +40287,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39658,8 +40327,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39698,8 +40367,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39738,8 +40407,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39778,8 +40447,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39819,6 +40488,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39857,8 +40527,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39898,6 +40568,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39937,6 +40608,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -39975,8 +40647,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40015,8 +40687,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40055,8 +40727,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40095,8 +40767,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40136,6 +40808,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40174,8 +40847,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40215,6 +40888,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40254,6 +40928,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40292,8 +40967,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40332,8 +41007,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40372,8 +41047,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40412,8 +41087,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40452,8 +41127,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40492,8 +41167,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40532,8 +41207,8 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -40572,260 +41247,278 @@ namespace OpenTK.Graphics.ES30 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_debug_marker] @@ -40846,6 +41539,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] public static void QueryCounter(Int32 id, OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } /// [requires: EXT_disjoint_timer_query] @@ -40861,8 +41555,8 @@ namespace OpenTK.Graphics.ES30 /// Specify the counter to query. target must be GL_TIMESTAMP. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } /// [requires: EXT_multiview_draw_buffers] @@ -40875,18 +41569,21 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -41124,29 +41821,32 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_texture_storage] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: EXT_texture_storage] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -41168,6 +41868,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -41188,17 +41889,18 @@ namespace OpenTK.Graphics.ES30 /// Specifies the program object containing the shader executables to use in pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] + [CLSCompliant(false)] public static void UseShaderProgram(OpenTK.Graphics.ES30.All type, Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] + [CLSCompliant(false)] public static void UseShaderProgram(OpenTK.Graphics.ES30.All type, UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -41210,6 +41912,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -41220,8 +41923,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of a program pipeline object to validate. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_instanced_arrays] @@ -41238,6 +41941,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: EXT_instanced_arrays] @@ -41253,8 +41957,8 @@ namespace OpenTK.Graphics.ES30 /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } } @@ -41263,11 +41967,12 @@ namespace OpenTK.Graphics.ES30 { /// [requires: IMG_multisampled_render_to_texture] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: IMG_multisampled_render_to_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } /// [requires: IMG_multisampled_render_to_texture] @@ -41367,6 +42072,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -41385,6 +42091,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -41403,6 +42110,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -41460,6 +42168,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41497,6 +42206,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41533,8 +42243,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41571,8 +42281,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41609,8 +42319,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41647,8 +42357,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41685,6 +42395,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41721,6 +42432,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41756,8 +42468,8 @@ namespace OpenTK.Graphics.ES30 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41793,8 +42505,8 @@ namespace OpenTK.Graphics.ES30 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41830,8 +42542,8 @@ namespace OpenTK.Graphics.ES30 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41867,8 +42579,8 @@ namespace OpenTK.Graphics.ES30 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41906,6 +42618,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41942,8 +42655,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, UInt32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -41980,6 +42693,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, Int32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42015,8 +42729,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, UInt32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42064,6 +42778,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All[] sources, [OutAttribute] OpenTK.Graphics.ES30.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES30.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42111,6 +42826,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.All sources, [OutAttribute] out OpenTK.Graphics.ES30.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES30.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42157,8 +42873,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All* sources, [OutAttribute] OpenTK.Graphics.ES30.All* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.ES30.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42205,6 +42921,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42251,6 +42968,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42296,8 +43014,8 @@ namespace OpenTK.Graphics.ES30 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42344,8 +43062,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All[] sources, [OutAttribute] OpenTK.Graphics.ES30.All[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.ES30.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42392,8 +43110,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.All sources, [OutAttribute] out OpenTK.Graphics.ES30.All types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.ES30.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42440,8 +43158,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All* sources, [OutAttribute] OpenTK.Graphics.ES30.All* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.ES30.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42487,8 +43205,8 @@ namespace OpenTK.Graphics.ES30 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42534,8 +43252,8 @@ namespace OpenTK.Graphics.ES30 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42581,8 +43299,8 @@ namespace OpenTK.Graphics.ES30 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42615,6 +43333,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42647,6 +43366,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42678,8 +43398,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42711,8 +43431,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42744,8 +43464,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42777,8 +43497,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42810,6 +43530,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42841,6 +43562,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42871,8 +43593,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42903,8 +43625,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42935,8 +43657,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42967,8 +43689,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -42995,6 +43717,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -43021,6 +43744,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -43046,8 +43770,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -43074,6 +43798,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43102,6 +43827,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43129,8 +43855,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43159,6 +43885,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43187,6 +43914,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43214,8 +43942,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43244,6 +43972,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43272,6 +44001,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43299,8 +44029,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43329,6 +44059,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43357,6 +44088,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43384,8 +44116,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -43396,18 +44128,21 @@ namespace OpenTK.Graphics.ES30 /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -43443,6 +44178,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -43469,8 +44205,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -43497,6 +44233,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -43522,8 +44259,8 @@ namespace OpenTK.Graphics.ES30 /// The address of a string containing the label to assign to the object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -43566,6 +44303,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -43589,6 +44327,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -43612,6 +44351,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -43669,6 +44409,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -43694,8 +44435,8 @@ namespace OpenTK.Graphics.ES30 /// The a string containing the message to be sent to the debug output stream. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } } @@ -43836,39 +44577,42 @@ namespace OpenTK.Graphics.ES30 /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFence(Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFence(UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, Int32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, Int32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, UInt32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, UInt32* fences) { throw new NotImplementedException(); } /// [requires: NV_draw_instanced] @@ -43939,6 +44683,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All[] bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -43956,6 +44701,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.All bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -43972,8 +44718,8 @@ namespace OpenTK.Graphics.ES30 /// /// [Obsolete("Use strongly-typed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All* bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -43990,6 +44736,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -44006,6 +44753,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_buffers] @@ -44021,8 +44769,8 @@ namespace OpenTK.Graphics.ES30 /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new NotImplementedException(); } /// [requires: NV_draw_instanced] @@ -44087,6 +44835,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -44121,6 +44870,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -44155,6 +44905,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -44253,6 +45004,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -44286,6 +45038,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -44319,6 +45072,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -44358,80 +45112,87 @@ namespace OpenTK.Graphics.ES30 /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] + [CLSCompliant(false)] public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] + [CLSCompliant(false)] public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static Int32 GenFence() { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] Int32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] Int32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] UInt32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] UInt32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] + [CLSCompliant(false)] public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] + [CLSCompliant(false)] public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_read_buffer] @@ -44510,98 +45271,112 @@ namespace OpenTK.Graphics.ES30 /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] + [CLSCompliant(false)] public static void SetFence(Int32 fence, OpenTK.Graphics.ES30.All condition) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] + [CLSCompliant(false)] public static void SetFence(UInt32 fence, OpenTK.Graphics.ES30.All condition) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] + [CLSCompliant(false)] public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] + [CLSCompliant(false)] public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: NV_non_square_matrices] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: NV_instanced_arrays] @@ -44618,6 +45393,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: NV_instanced_arrays] @@ -44633,8 +45409,8 @@ namespace OpenTK.Graphics.ES30 /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } } @@ -44650,6 +45426,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] + [CLSCompliant(false)] public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -44660,8 +45437,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the name of the vertex array to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] + [CLSCompliant(false)] public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: OES_texture_3D] @@ -44766,6 +45543,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -44820,6 +45598,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -44874,6 +45653,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -45032,6 +45812,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -45085,6 +45866,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -45138,6 +45920,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -45307,6 +46090,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -45366,6 +46150,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -45425,6 +46210,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -45598,6 +46384,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -45656,6 +46443,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -45714,6 +46502,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -45871,11 +46660,12 @@ namespace OpenTK.Graphics.ES30 /// [requires: OES_vertex_array_object] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArray(Int32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArray(UInt32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -45892,6 +46682,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, Int32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -45908,6 +46699,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref Int32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -45923,8 +46715,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, Int32* arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -45940,8 +46732,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -45957,8 +46749,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref UInt32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -45974,8 +46766,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays) { throw new NotImplementedException(); } /// [requires: OES_EGL_image] @@ -45988,15 +46780,17 @@ namespace OpenTK.Graphics.ES30 /// [requires: OES_texture_3D] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: OES_texture_3D] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static Int32 GenVertexArray() { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -46013,6 +46807,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -46029,6 +46824,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -46044,8 +46840,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -46061,8 +46857,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -46078,8 +46874,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -46095,8 +46891,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] @@ -46107,6 +46903,7 @@ namespace OpenTK.Graphics.ES30 /// [requires: OES_mapbuffer] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } @@ -46114,6 +46911,7 @@ namespace OpenTK.Graphics.ES30 /// [requires: OES_mapbuffer] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -46121,6 +46919,7 @@ namespace OpenTK.Graphics.ES30 /// [requires: OES_mapbuffer] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -46138,18 +46937,21 @@ namespace OpenTK.Graphics.ES30 /// [requires: OES_mapbuffer] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -46189,6 +46991,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -46220,6 +47023,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46253,6 +47057,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46286,6 +47091,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46319,6 +47125,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -46352,6 +47159,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -46383,6 +47191,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46416,6 +47225,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46449,6 +47259,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46482,6 +47293,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -46514,8 +47326,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -46546,8 +47358,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46580,8 +47392,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46614,8 +47426,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46648,8 +47460,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -46682,8 +47494,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -46714,8 +47526,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46748,8 +47560,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46782,8 +47594,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46816,8 +47628,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -46850,8 +47662,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -46882,8 +47694,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46916,8 +47728,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46950,8 +47762,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -46984,8 +47796,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -47018,8 +47830,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -47050,8 +47862,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -47084,8 +47896,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -47118,8 +47930,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -47152,8 +47964,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -47167,6 +47979,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] + [CLSCompliant(false)] public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: OES_vertex_array_object] @@ -47177,8 +47990,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a vertex array object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] + [CLSCompliant(false)] public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: OES_mapbuffer] @@ -47221,6 +48034,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -47247,6 +48061,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -47275,6 +48090,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -47303,6 +48119,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -47331,6 +48148,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -47358,8 +48176,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: OES_get_program_binary] @@ -47385,8 +48203,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -47414,8 +48232,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -47443,8 +48261,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -47472,8 +48290,8 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -47590,6 +48408,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -47649,6 +48468,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -47708,6 +48528,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -47881,6 +48702,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -47939,6 +48761,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -47997,6 +48820,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -48181,6 +49005,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -48245,6 +49070,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -48309,6 +49135,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -48497,6 +49324,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -48560,6 +49388,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -48623,6 +49452,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -48721,29 +49551,32 @@ namespace OpenTK.Graphics.ES30 /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] + [CLSCompliant(false)] public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] + [CLSCompliant(false)] public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] + [CLSCompliant(false)] public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] + [CLSCompliant(false)] public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] + [CLSCompliant(false)] public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] + [CLSCompliant(false)] public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] @@ -48752,18 +49585,21 @@ namespace OpenTK.Graphics.ES30 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] + [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] + [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] + [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -48776,198 +49612,212 @@ namespace OpenTK.Graphics.ES30 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] Int32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] out Int32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetBuffers([OutAttribute] Int32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] UInt32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute] out UInt32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetBuffers([OutAttribute] UInt32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] Int32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] out Int32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgram([OutAttribute] Int32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] UInt32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute] out UInt32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetProgram([OutAttribute] UInt32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetRenderbuffers([OutAttribute] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetRenderbuffers([OutAttribute] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] Int32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] out Int32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute] Int32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] UInt32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute] out UInt32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute] UInt32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] @@ -48976,18 +49826,21 @@ namespace OpenTK.Graphics.ES30 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[] texels) where T10 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,] texels) where T10 : struct { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,,] texels) where T10 : struct { throw new NotImplementedException(); } @@ -49000,39 +49853,42 @@ namespace OpenTK.Graphics.ES30 /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] + [CLSCompliant(false)] public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] + [CLSCompliant(false)] public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } /// [requires: QCOM_extended_get] @@ -49041,67 +49897,72 @@ namespace OpenTK.Graphics.ES30 /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute] Int32[] driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute] UInt32[] driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute] out Int32 driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute] out UInt32 driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute] Int32* driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute] UInt32* driverControls) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_driver_control] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] + [CLSCompliant(false)] public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new NotImplementedException(); } /// [requires: QCOM_tiled_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new NotImplementedException(); } } diff --git a/Source/OpenTK/Graphics/OpenGL/GL.cs b/Source/OpenTK/Graphics/OpenGL/GL.cs index 3f99b55d..b7936696 100644 --- a/Source/OpenTK/Graphics/OpenGL/GL.cs +++ b/Source/OpenTK/Graphics/OpenGL/GL.cs @@ -2699,11 +2699,12 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: 3DFX_tbuffer] [AutoGenerated(Category = "3DFX_tbuffer", Version = "", EntryPoint = "glTbufferMask3DFX")] + [CLSCompliant(false)] public static void TbufferMask(Int32 mask) { throw new NotImplementedException(); } /// [requires: 3DFX_tbuffer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "3DFX_tbuffer", Version = "", EntryPoint = "glTbufferMask3DFX")] + [CLSCompliant(false)] public static void TbufferMask(UInt32 mask) { throw new NotImplementedException(); } } @@ -2712,47 +2713,52 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] + [CLSCompliant(false)] public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] + [CLSCompliant(false)] public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_draw_buffers_blend] [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationIndexedAMD")] + [CLSCompliant(false)] public static void BlendEquationIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new NotImplementedException(); } /// [requires: AMD_draw_buffers_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationIndexedAMD")] + [CLSCompliant(false)] public static void BlendEquationIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new NotImplementedException(); } /// [requires: AMD_draw_buffers_blend] [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateIndexedAMD")] + [CLSCompliant(false)] public static void BlendEquationSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new NotImplementedException(); } /// [requires: AMD_draw_buffers_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateIndexedAMD")] + [CLSCompliant(false)] public static void BlendEquationSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new NotImplementedException(); } /// [requires: AMD_draw_buffers_blend] [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncIndexedAMD")] + [CLSCompliant(false)] public static void BlendFuncIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend src, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dst) { throw new NotImplementedException(); } /// [requires: AMD_draw_buffers_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncIndexedAMD")] + [CLSCompliant(false)] public static void BlendFuncIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend src, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dst) { throw new NotImplementedException(); } /// [requires: AMD_draw_buffers_blend] [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateIndexedAMD")] + [CLSCompliant(false)] public static void BlendFuncSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } /// [requires: AMD_draw_buffers_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateIndexedAMD")] + [CLSCompliant(false)] public static void BlendFuncSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] @@ -2785,6 +2791,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackAMD")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -2803,6 +2810,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackAMD")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -2821,6 +2829,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackAMD")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -2845,30 +2854,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: AMD_debug_output] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] + [CLSCompliant(false)] public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] + [CLSCompliant(false)] public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] + [CLSCompliant(false)] public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] + [CLSCompliant(false)] public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] + [CLSCompliant(false)] public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] + [CLSCompliant(false)] public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] @@ -2905,6 +2916,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageInsertAMD")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 id, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] @@ -2940,142 +2952,153 @@ namespace OpenTK.Graphics.OpenGL /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageInsertAMD")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, UInt32 id, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] + [CLSCompliant(false)] public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, Int32[] names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] + [CLSCompliant(false)] public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, ref Int32 names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] + [CLSCompliant(false)] public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, Int32* names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] + [CLSCompliant(false)] public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, UInt32[] names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] + [CLSCompliant(false)] public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, ref UInt32 names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] + [CLSCompliant(false)] public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, UInt32* names) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitor(Int32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitor(UInt32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, Int32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, ref Int32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void DeletePerfMonitors(Int32 n, Int32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, UInt32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static void DeletePerfMonitors(Int32 n, ref UInt32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void DeletePerfMonitors(Int32 n, UInt32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] + [CLSCompliant(false)] public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] + [CLSCompliant(false)] public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] + [CLSCompliant(false)] public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute] Int32[] names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] + [CLSCompliant(false)] public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute] out Int32 names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] + [CLSCompliant(false)] public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute] Int32* names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] + [CLSCompliant(false)] public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute] UInt32[] names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] + [CLSCompliant(false)] public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute] out UInt32 names) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] + [CLSCompliant(false)] public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute] UInt32* names) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] Int32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] out Int32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute] Int32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] UInt32[] monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static void GenPerfMonitors(Int32 n, [OutAttribute] out UInt32 monitors) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] + [CLSCompliant(false)] public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute] UInt32* monitors) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] @@ -3122,6 +3145,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute] Int32[] severities, [OutAttribute] Int32[] ids, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder message) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] @@ -3168,6 +3192,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute] out Int32 severities, [OutAttribute] out Int32 ids, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder message) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] @@ -3213,8 +3238,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute] Int32* severities, [OutAttribute] Int32* ids, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder message) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] @@ -3260,8 +3285,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute] UInt32[] severities, [OutAttribute] UInt32[] ids, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder message) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] @@ -3307,8 +3332,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute] out UInt32 severities, [OutAttribute] out UInt32 ids, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder message) { throw new NotImplementedException(); } /// [requires: AMD_debug_output] @@ -3354,200 +3379,214 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute] UInt32* severities, [OutAttribute] UInt32* ids, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder message) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] Int32[] data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] out Int32 data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] Int32* data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] out UInt32 data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32* data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(Int32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] Int32[] counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(Int32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] out Int32 counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] Int32* counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32[] counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] out UInt32 counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32* counters) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] Int32[] groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out Int32 groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] UInt32[] groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out UInt32 groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroups([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32* groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroups([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32* groups) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] + [CLSCompliant(false)] public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glIsNameAMD")] + [CLSCompliant(false)] public static bool IsName(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 name) { throw new NotImplementedException(); } /// [requires: AMD_name_gen_delete] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glIsNameAMD")] + [CLSCompliant(false)] public static bool IsName(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 name) { throw new NotImplementedException(); } /// [requires: AMD_multi_draw_indirect] @@ -3600,6 +3639,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectAMD")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect mode, [InAttribute, OutAttribute] T1[] indirect, Int32 primcount, Int32 stride) where T1 : struct { throw new NotImplementedException(); } @@ -3628,6 +3668,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectAMD")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 primcount, Int32 stride) where T1 : struct { throw new NotImplementedException(); } @@ -3656,6 +3697,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectAMD")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 primcount, Int32 stride) where T1 : struct { throw new NotImplementedException(); } @@ -3748,6 +3790,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect, Int32 primcount, Int32 stride) where T2 : struct { throw new NotImplementedException(); } @@ -3781,6 +3824,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect, Int32 primcount, Int32 stride) where T2 : struct { throw new NotImplementedException(); } @@ -3814,6 +3858,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 primcount, Int32 stride) where T2 : struct { throw new NotImplementedException(); } @@ -3853,76 +3898,82 @@ namespace OpenTK.Graphics.OpenGL /// [requires: AMD_occlusion_query_event] [AutoGenerated(Category = "AMD_occlusion_query_event", Version = "", EntryPoint = "glQueryObjectParameteruiAMD")] + [CLSCompliant(false)] public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, Int32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new NotImplementedException(); } /// [requires: AMD_occlusion_query_event] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_occlusion_query_event", Version = "", EntryPoint = "glQueryObjectParameteruiAMD")] + [CLSCompliant(false)] public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, UInt32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] Int32[] counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] out Int32 counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] Int32* counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] UInt32[] counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] out UInt32 counterList) { throw new NotImplementedException(); } /// [requires: AMD_performance_monitor] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] + [CLSCompliant(false)] public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] UInt32* counterList) { throw new NotImplementedException(); } /// [requires: AMD_sample_positions] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] + [CLSCompliant(false)] public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, Single[] val) { throw new NotImplementedException(); } /// [requires: AMD_sample_positions] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] + [CLSCompliant(false)] public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, ref Single val) { throw new NotImplementedException(); } /// [requires: AMD_sample_positions] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] + [CLSCompliant(false)] public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, Single* val) { throw new NotImplementedException(); } /// [requires: AMD_sample_positions] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] + [CLSCompliant(false)] public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, Single[] val) { throw new NotImplementedException(); } /// [requires: AMD_sample_positions] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] + [CLSCompliant(false)] public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, ref Single val) { throw new NotImplementedException(); } /// [requires: AMD_sample_positions] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] + [CLSCompliant(false)] public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, Single* val) { throw new NotImplementedException(); } /// [requires: AMD_stencil_operation_extended] [AutoGenerated(Category = "AMD_stencil_operation_extended", Version = "", EntryPoint = "glStencilOpValueAMD")] + [CLSCompliant(false)] public static void StencilOpValue(OpenTK.Graphics.OpenGL.AmdStencilOperationExtended face, Int32 value) { throw new NotImplementedException(); } /// [requires: AMD_stencil_operation_extended] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_stencil_operation_extended", Version = "", EntryPoint = "glStencilOpValueAMD")] + [CLSCompliant(false)] public static void StencilOpValue(OpenTK.Graphics.OpenGL.AmdStencilOperationExtended face, UInt32 value) { throw new NotImplementedException(); } /// [requires: AMD_vertex_shader_tessellator] @@ -3940,29 +3991,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: AMD_sparse_texture] [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTexStorageSparseAMD")] + [CLSCompliant(false)] public static void TexStorageSparse(OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, Int32 flags) { throw new NotImplementedException(); } /// [requires: AMD_sparse_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTexStorageSparseAMD")] + [CLSCompliant(false)] public static void TexStorageSparse(OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags) { throw new NotImplementedException(); } /// [requires: AMD_sparse_texture] [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTextureStorageSparseAMD")] + [CLSCompliant(false)] public static void TextureStorageSparse(Int32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, Int32 flags) { throw new NotImplementedException(); } /// [requires: AMD_sparse_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTextureStorageSparseAMD")] + [CLSCompliant(false)] public static void TextureStorageSparse(UInt32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags) { throw new NotImplementedException(); } /// [requires: AMD_interleaved_elements] [AutoGenerated(Category = "AMD_interleaved_elements", Version = "", EntryPoint = "glVertexAttribParameteriAMD")] + [CLSCompliant(false)] public static void VertexAttribParameter(Int32 index, OpenTK.Graphics.OpenGL.AmdInterleavedElements pname, Int32 param) { throw new NotImplementedException(); } /// [requires: AMD_interleaved_elements] - [System.CLSCompliant(false)] [AutoGenerated(Category = "AMD_interleaved_elements", Version = "", EntryPoint = "glVertexAttribParameteriAMD")] + [CLSCompliant(false)] public static void VertexAttribParameter(UInt32 index, OpenTK.Graphics.OpenGL.AmdInterleavedElements pname, Int32 param) { throw new NotImplementedException(); } } @@ -3978,6 +4032,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayAPPLE")] + [CLSCompliant(false)] public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -3988,8 +4043,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the vertex array to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayAPPLE")] + [CLSCompliant(false)] public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: APPLE_flush_buffer_range] @@ -3998,48 +4053,52 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] + [CLSCompliant(false)] public static void DeleteFence(Int32 fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] + [CLSCompliant(false)] public static void DeleteFence(UInt32 fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, Int32[] fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref Int32 fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, Int32* fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, UInt32[] fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref UInt32 fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, UInt32* fences) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] + [CLSCompliant(false)] public static void DeleteVertexArray(Int32 arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] + [CLSCompliant(false)] public static void DeleteVertexArray(UInt32 arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4056,6 +4115,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, Int32[] arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4072,6 +4132,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref Int32 arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4087,8 +4148,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, Int32* arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4104,8 +4165,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4121,8 +4182,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref UInt32 arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4138,17 +4199,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glDisableVertexAttribAPPLE")] + [CLSCompliant(false)] public static void DisableVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glDisableVertexAttribAPPLE")] + [CLSCompliant(false)] public static void DisableVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] @@ -4163,21 +4225,23 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 first, Int32 count) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 first, Int32 count) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] @@ -4186,18 +4250,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_element_array] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glElementPointerAPPLE")] + [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute] T1[] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glElementPointerAPPLE")] + [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute] T1[,] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glElementPointerAPPLE")] + [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute] T1[,,] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -4210,20 +4277,22 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glEnableVertexAttribAPPLE")] + [CLSCompliant(false)] public static void EnableVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glEnableVertexAttribAPPLE")] + [CLSCompliant(false)] public static void EnableVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glFinishFenceAPPLE")] + [CLSCompliant(false)] public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glFinishFenceAPPLE")] + [CLSCompliant(false)] public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: APPLE_fence] @@ -4257,18 +4326,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_vertex_array_range] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glFlushVertexArrayRangeAPPLE")] + [CLSCompliant(false)] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute] T1[] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_range] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glFlushVertexArrayRangeAPPLE")] + [CLSCompliant(false)] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute] T1[,] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_range] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glFlushVertexArrayRangeAPPLE")] + [CLSCompliant(false)] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute] T1[,,] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -4281,38 +4353,42 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] + [CLSCompliant(false)] public static Int32 GenFence() { throw new NotImplementedException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] Int32[] fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out Int32 fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] Int32* fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] UInt32[] fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out UInt32 fences) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] UInt32* fences) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] + [CLSCompliant(false)] public static Int32 GenVertexArray() { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4329,6 +4405,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4345,6 +4422,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4360,8 +4438,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4377,8 +4455,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4394,8 +4472,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4411,36 +4489,38 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] + [CLSCompliant(false)] public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] + [CLSCompliant(false)] public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] + [CLSCompliant(false)] public static unsafe void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] + [CLSCompliant(false)] public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] + [CLSCompliant(false)] public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] + [CLSCompliant(false)] public static unsafe void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: APPLE_texture_range] @@ -4449,18 +4529,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_texture_range] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glGetTexParameterPointervAPPLE")] + [CLSCompliant(false)] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: APPLE_texture_range] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glGetTexParameterPointervAPPLE")] + [CLSCompliant(false)] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: APPLE_texture_range] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glGetTexParameterPointervAPPLE")] + [CLSCompliant(false)] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -4473,11 +4556,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glIsFenceAPPLE")] + [CLSCompliant(false)] public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glIsFenceAPPLE")] + [CLSCompliant(false)] public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4489,6 +4573,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayAPPLE")] + [CLSCompliant(false)] public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_object] @@ -4499,265 +4584,287 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a vertex array object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayAPPLE")] + [CLSCompliant(false)] public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glIsVertexAttribEnabledAPPLE")] + [CLSCompliant(false)] public static bool IsVertexAttribEnabled(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glIsVertexAttribEnabledAPPLE")] + [CLSCompliant(false)] public static bool IsVertexAttribEnabled(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, Double[] points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, ref Double points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] + [CLSCompliant(false)] public static unsafe void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, Double* points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, Double[] points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, ref Double points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] + [CLSCompliant(false)] public static unsafe void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, Double* points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, Single[] points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, ref Single points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] + [CLSCompliant(false)] public static unsafe void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, Single* points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, Single[] points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, ref Single points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] + [CLSCompliant(false)] public static unsafe void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, Single* points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double[] points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, ref Double points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] + [CLSCompliant(false)] public static unsafe void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double[] points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, ref Double points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] + [CLSCompliant(false)] public static unsafe void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single[] points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, ref Single points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] + [CLSCompliant(false)] public static unsafe void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single[] points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] + [CLSCompliant(false)] public static void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, ref Single points) { throw new NotImplementedException(); } /// [requires: APPLE_vertex_program_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] + [CLSCompliant(false)] public static unsafe void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_element_array] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] + [CLSCompliant(false)] public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glObjectPurgeableAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectPurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glObjectPurgeableAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectPurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glObjectUnpurgeableAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectUnpurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new NotImplementedException(); } /// [requires: APPLE_object_purgeable] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glObjectUnpurgeableAPPLE")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectUnpurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new NotImplementedException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glSetFenceAPPLE")] + [CLSCompliant(false)] public static void SetFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glSetFenceAPPLE")] + [CLSCompliant(false)] public static void SetFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestFenceAPPLE")] + [CLSCompliant(false)] public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestFenceAPPLE")] + [CLSCompliant(false)] public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestObjectAPPLE")] + [CLSCompliant(false)] public static bool TestObject(OpenTK.Graphics.OpenGL.AppleFence @object, Int32 name) { throw new NotImplementedException(); } /// [requires: APPLE_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestObjectAPPLE")] + [CLSCompliant(false)] public static bool TestObject(OpenTK.Graphics.OpenGL.AppleFence @object, UInt32 name) { throw new NotImplementedException(); } /// [requires: APPLE_texture_range] @@ -4766,18 +4873,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_texture_range] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glTextureRangeAPPLE")] + [CLSCompliant(false)] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: APPLE_texture_range] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glTextureRangeAPPLE")] + [CLSCompliant(false)] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: APPLE_texture_range] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glTextureRangeAPPLE")] + [CLSCompliant(false)] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -4798,18 +4908,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: APPLE_vertex_array_range] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeAPPLE")] + [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute] T1[] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_range] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeAPPLE")] + [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute] T1[,] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: APPLE_vertex_array_range] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeAPPLE")] + [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute] T1[,,] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -4837,11 +4950,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glAttachObjectARB")] + [CLSCompliant(false)] public static void AttachObject(Int32 containerObj, Int32 obj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glAttachObjectARB")] + [CLSCompliant(false)] public static void AttachObject(UInt32 containerObj, UInt32 obj) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -4858,6 +4972,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glBeginQueryARB")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, Int32 id) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -4873,8 +4988,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glBeginQueryARB")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, UInt32 id) { throw new NotImplementedException(); } /// [requires: ARB_vertex_shader] @@ -4896,6 +5011,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glBindAttribLocationARB")] + [CLSCompliant(false)] public static void BindAttribLocation(Int32 programObj, Int32 index, String name) { throw new NotImplementedException(); } /// [requires: ARB_vertex_shader] @@ -4916,8 +5032,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a null terminated string containing the name of the vertex shader attribute variable to which index is to be bound. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glBindAttribLocationARB")] + [CLSCompliant(false)] public static void BindAttribLocation(UInt32 programObj, UInt32 index, String name) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -4934,6 +5050,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBindBufferARB")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 buffer) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -4949,17 +5066,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBindBufferARB")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glBindProgramARB")] + [CLSCompliant(false)] public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 program) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glBindProgramARB")] + [CLSCompliant(false)] public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 program) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -4976,6 +5094,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] + [CLSCompliant(false)] public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -4991,8 +5110,8 @@ namespace OpenTK.Graphics.OpenGL /// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] + [CLSCompliant(false)] public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -5014,6 +5133,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] + [CLSCompliant(false)] public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -5034,8 +5154,8 @@ namespace OpenTK.Graphics.OpenGL /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] + [CLSCompliant(false)] public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -5057,6 +5177,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] + [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -5077,8 +5198,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA. GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_ALPHA, and GL_ONE_MINUS_CONSTANT_ALPHA. The initial value is GL_ZERO. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -5110,6 +5231,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] + [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -5140,8 +5262,8 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha destination blending factor is computed. The initial value is GL_ZERO. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -5194,6 +5316,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct { throw new NotImplementedException(); } @@ -5222,6 +5345,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct { throw new NotImplementedException(); } @@ -5250,6 +5374,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct { throw new NotImplementedException(); } @@ -5332,6 +5457,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -5360,6 +5486,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -5388,6 +5515,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -5456,6 +5584,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCompileShaderARB")] + [CLSCompliant(false)] public static void CompileShader(Int32 shaderObj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -5466,36 +5595,38 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the shader object to be compiled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCompileShaderARB")] + [CLSCompliant(false)] public static void CompileShader(UInt32 shaderObj) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static void CompileShaderInclude(Int32 shader, Int32 count, String[] path, Int32[] length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static void CompileShaderInclude(Int32 shader, Int32 count, String[] path, ref Int32 length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, String[] path, Int32* length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static void CompileShaderInclude(UInt32 shader, Int32 count, String[] path, Int32[] length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static void CompileShaderInclude(UInt32 shader, Int32 count, String[] path, ref Int32 length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, String[] path, Int32* length) { throw new NotImplementedException(); } /// [requires: ARB_texture_compression] @@ -5578,6 +5709,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] + [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } @@ -5621,6 +5753,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] + [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } @@ -5664,6 +5797,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] + [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } @@ -5801,6 +5935,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -5849,6 +5984,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -5897,6 +6033,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -6049,6 +6186,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -6102,6 +6240,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -6155,6 +6294,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -6292,6 +6432,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage1DARB")] + [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } @@ -6335,6 +6476,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage1DARB")] + [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } @@ -6378,6 +6520,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage1DARB")] + [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } @@ -6525,6 +6668,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage2DARB")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -6578,6 +6722,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage2DARB")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -6631,6 +6776,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage2DARB")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -6798,6 +6944,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage3DARB")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -6856,6 +7003,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage3DARB")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6914,6 +7062,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage3DARB")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6986,30 +7135,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_cl_event] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, Int32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, UInt32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, Int32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, UInt32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, Int32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, UInt32 flags) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] @@ -7046,6 +7197,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -7064,6 +7216,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -7082,6 +7235,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -7138,6 +7292,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -7174,6 +7329,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -7209,8 +7365,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -7246,8 +7402,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -7283,8 +7439,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -7320,8 +7476,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -7358,6 +7514,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, Int32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -7393,17 +7550,18 @@ namespace OpenTK.Graphics.OpenGL /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, UInt32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] + [CLSCompliant(false)] public static void DeleteBuffer(Int32 buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] + [CLSCompliant(false)] public static void DeleteBuffer(UInt32 buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -7420,6 +7578,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, Int32[] buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -7436,6 +7595,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref Int32 buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -7451,8 +7611,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, Int32* buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -7468,8 +7628,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -7485,8 +7645,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref UInt32 buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -7502,8 +7662,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, UInt32* buffers) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] @@ -7512,11 +7672,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDeleteObjectARB")] + [CLSCompliant(false)] public static void DeleteObject(Int32 obj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDeleteObjectARB")] + [CLSCompliant(false)] public static void DeleteObject(UInt32 obj) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -7528,6 +7689,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -7538,8 +7700,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] + [CLSCompliant(false)] public static void DeleteProgram(UInt32 programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -7551,6 +7713,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 n, Int32[] programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -7562,6 +7725,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 n, ref Int32 programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -7572,8 +7736,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] + [CLSCompliant(false)] public static unsafe void DeleteProgram(Int32 n, Int32* programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -7584,8 +7748,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 n, UInt32[] programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -7596,8 +7760,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 n, ref UInt32 programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -7608,17 +7772,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] + [CLSCompliant(false)] public static unsafe void DeleteProgram(Int32 n, UInt32* programs) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] + [CLSCompliant(false)] public static void DeleteQuery(Int32 ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] + [CLSCompliant(false)] public static void DeleteQuery(UInt32 ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -7635,6 +7800,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -7651,6 +7817,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -7666,8 +7833,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -7683,8 +7850,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -7700,8 +7867,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -7717,35 +7884,38 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDetachObjectARB")] + [CLSCompliant(false)] public static void DetachObject(Int32 containerObj, Int32 attachedObj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDetachObjectARB")] + [CLSCompliant(false)] public static void DetachObject(UInt32 containerObj, UInt32 attachedObj) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glDisableVertexAttribArrayARB")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glDisableVertexAttribArrayARB")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: ARB_compute_variable_group_size] [AutoGenerated(Category = "ARB_compute_variable_group_size", Version = "", EntryPoint = "glDispatchComputeGroupSizeARB")] + [CLSCompliant(false)] public static void DispatchComputeGroupSize(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z, Int32 group_size_x, Int32 group_size_y, Int32 group_size_z) { throw new NotImplementedException(); } /// [requires: ARB_compute_variable_group_size] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_compute_variable_group_size", Version = "", EntryPoint = "glDispatchComputeGroupSizeARB")] + [CLSCompliant(false)] public static void DispatchComputeGroupSize(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z, UInt32 group_size_x, UInt32 group_size_y, UInt32 group_size_z) { throw new NotImplementedException(); } /// [requires: ARB_draw_instanced] @@ -7815,6 +7985,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_buffers", Version = "", EntryPoint = "glDrawBuffersARB")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.ArbDrawBuffers[] bufs) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers] @@ -7831,6 +8002,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_buffers", Version = "", EntryPoint = "glDrawBuffersARB")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.OpenGL.ArbDrawBuffers bufs) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers] @@ -7846,8 +8018,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_buffers", Version = "", EntryPoint = "glDrawBuffersARB")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.ArbDrawBuffers* bufs) { throw new NotImplementedException(); } /// [requires: ARB_draw_instanced] @@ -7912,6 +8084,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -7946,6 +8119,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -7980,6 +8154,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -8078,6 +8253,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -8111,6 +8287,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -8144,6 +8321,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -8190,6 +8368,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glEnableVertexAttribArrayARB")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -8200,8 +8379,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the index of the generic vertex attribute to be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glEnableVertexAttribArrayARB")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -8237,6 +8416,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureARB")] + [CLSCompliant(false)] public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: ARB_geometry_shader4] @@ -8267,8 +8447,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mipmap level of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureARB")] + [CLSCompliant(false)] public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: ARB_geometry_shader4] @@ -8300,6 +8480,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureFaceARB")] + [CLSCompliant(false)] public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } /// [requires: ARB_geometry_shader4] @@ -8330,8 +8511,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the face of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureFaceARB")] + [CLSCompliant(false)] public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } /// [requires: ARB_geometry_shader4] @@ -8363,6 +8544,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureLayerARB")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: ARB_geometry_shader4] @@ -8393,12 +8575,13 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the layer of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureLayerARB")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] + [CLSCompliant(false)] public static Int32 GenBuffer() { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -8415,6 +8598,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -8431,6 +8615,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -8446,8 +8631,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -8463,8 +8648,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -8480,8 +8665,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -8497,44 +8682,48 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] + [CLSCompliant(false)] public static Int32 GenProgram() { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] + [CLSCompliant(false)] public static void GenProgram(Int32 n, [OutAttribute] Int32[] programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] + [CLSCompliant(false)] public static void GenProgram(Int32 n, [OutAttribute] out Int32 programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] + [CLSCompliant(false)] public static unsafe void GenProgram(Int32 n, [OutAttribute] Int32* programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] + [CLSCompliant(false)] public static void GenProgram(Int32 n, [OutAttribute] UInt32[] programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] + [CLSCompliant(false)] public static void GenProgram(Int32 n, [OutAttribute] out UInt32 programs) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] + [CLSCompliant(false)] public static unsafe void GenProgram(Int32 n, [OutAttribute] UInt32* programs) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] + [CLSCompliant(false)] public static Int32 GenQuery() { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -8551,6 +8740,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -8567,6 +8757,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -8582,8 +8773,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -8599,8 +8790,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -8616,8 +8807,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -8633,8 +8824,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: ARB_vertex_shader] @@ -8676,6 +8867,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] + [CLSCompliant(false)] public static void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: ARB_vertex_shader] @@ -8716,8 +8908,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: ARB_vertex_shader] @@ -8758,8 +8950,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] + [CLSCompliant(false)] public static void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: ARB_vertex_shader] @@ -8800,8 +8992,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -8843,6 +9035,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] + [CLSCompliant(false)] public static void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -8883,8 +9076,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -8925,8 +9118,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] + [CLSCompliant(false)] public static void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -8967,36 +9160,38 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] + [CLSCompliant(false)] public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] Int32[] obj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] + [CLSCompliant(false)] public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out Int32 obj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] + [CLSCompliant(false)] public static unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32* obj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] + [CLSCompliant(false)] public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] UInt32[] obj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] + [CLSCompliant(false)] public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out UInt32 obj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] + [CLSCompliant(false)] public static unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32* obj) { throw new NotImplementedException(); } /// [requires: ARB_vertex_shader] @@ -9013,6 +9208,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetAttribLocationARB")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(Int32 programObj, String name) { throw new NotImplementedException(); } /// [requires: ARB_vertex_shader] @@ -9028,8 +9224,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to a null terminated string containing the name of the attribute variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetAttribLocationARB")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(UInt32 programObj, String name) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -9052,6 +9248,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -9074,6 +9271,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -9095,8 +9293,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use BufferTargetArb overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -9118,6 +9316,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -9139,6 +9338,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -9159,8 +9359,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -9171,6 +9371,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_vertex_buffer_object] [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } @@ -9178,6 +9379,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_vertex_buffer_object] [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -9185,6 +9387,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_vertex_buffer_object] [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -9202,18 +9405,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_vertex_buffer_object] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -9274,6 +9480,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] + [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -9302,6 +9509,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] + [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -9330,6 +9538,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] + [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -9402,6 +9611,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glGetCompressedTexImageARB")] + [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute] T2[] img) where T2 : struct { throw new NotImplementedException(); } @@ -9425,6 +9635,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glGetCompressedTexImageARB")] + [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute] T2[,] img) where T2 : struct { throw new NotImplementedException(); } @@ -9448,6 +9659,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glGetCompressedTexImageARB")] + [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute] T2[,,] img) where T2 : struct { throw new NotImplementedException(); } @@ -9519,6 +9731,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -9565,6 +9778,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -9610,8 +9824,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -9657,8 +9871,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -9704,8 +9918,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -9751,8 +9965,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -9765,52 +9979,57 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] + [CLSCompliant(false)] public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] + [CLSCompliant(false)] public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] + [CLSCompliant(false)] public static void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] + [CLSCompliant(false)] public static unsafe void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] + [CLSCompliant(false)] public static void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] + [CLSCompliant(false)] public static unsafe void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] + [CLSCompliant(false)] public static void GetNamedString(Int32 namelen, String name, Int32 bufSize, [OutAttribute] out Int32 stringlen, [OutAttribute] StringBuilder @string) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] + [CLSCompliant(false)] public static unsafe void GetNamedString(Int32 namelen, String name, Int32 bufSize, [OutAttribute] Int32* stringlen, [OutAttribute] StringBuilder @string) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] + [CLSCompliant(false)] public static void GetNamedString(Int32 namelen, String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] + [CLSCompliant(false)] public static void GetNamedString(Int32 namelen, String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] + [CLSCompliant(false)] public static unsafe void GetNamedString(Int32 namelen, String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -9819,18 +10038,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] + [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T4[] table) where T4 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] + [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] table) where T4 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] + [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] table) where T4 : struct { throw new NotImplementedException(); } @@ -9847,18 +10069,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] + [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] + [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] + [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] img) where T3 : struct { throw new NotImplementedException(); } @@ -9875,18 +10100,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] + [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T4[] image) where T4 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] + [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] image) where T4 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] + [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] image) where T4 : struct { throw new NotImplementedException(); } @@ -9903,18 +10131,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] + [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] + [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] + [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct { throw new NotImplementedException(); } @@ -9927,41 +10158,47 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute] Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute] out Double v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] + [CLSCompliant(false)] public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute] Double* v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute] out Single v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] + [CLSCompliant(false)] public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute] Single* v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] + [CLSCompliant(false)] public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute] Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -9970,18 +10207,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] + [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] + [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] + [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct { throw new NotImplementedException(); } @@ -9994,88 +10234,97 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] Single[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] out Single values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] Single* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] Int16* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] + [CLSCompliant(false)] public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] + [CLSCompliant(false)] public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] + [CLSCompliant(false)] public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] + [CLSCompliant(false)] public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -10084,6 +10333,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] + [CLSCompliant(false)] public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[] column, [InAttribute, OutAttribute] T7[] span) where T4 : struct where T6 : struct @@ -10092,6 +10342,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] + [CLSCompliant(false)] public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,] column, [InAttribute, OutAttribute] T7[,] span) where T4 : struct where T6 : struct @@ -10100,6 +10351,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] + [CLSCompliant(false)] public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,,] column, [InAttribute, OutAttribute] T7[,,] span) where T4 : struct where T6 : struct @@ -10120,18 +10372,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] + [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T5[] img) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] + [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] img) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] + [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] img) where T5 : struct { throw new NotImplementedException(); } @@ -10144,281 +10399,299 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] + [CLSCompliant(false)] public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] + [CLSCompliant(false)] public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] + [CLSCompliant(false)] public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] + [CLSCompliant(false)] public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] + [CLSCompliant(false)] public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] + [CLSCompliant(false)] public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] + [CLSCompliant(false)] public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] + [CLSCompliant(false)] public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] + [CLSCompliant(false)] public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] + [CLSCompliant(false)] public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -10440,6 +10713,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramivARB")] + [CLSCompliant(false)] public static void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -10460,132 +10734,140 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramivARB")] + [CLSCompliant(false)] public static unsafe void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -10594,18 +10876,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramStringARB")] + [CLSCompliant(false)] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute] T2[] @string) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramStringARB")] + [CLSCompliant(false)] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute] T2[,] @string) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramStringARB")] + [CLSCompliant(false)] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute] T2[,,] @string) where T2 : struct { throw new NotImplementedException(); } @@ -10618,15 +10903,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_occlusion_query] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryivARB")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryivARB")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryivARB")] + [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -10648,6 +10935,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -10669,6 +10957,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -10689,8 +10978,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -10711,8 +11000,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -10733,8 +11022,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -10755,8 +11044,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -10777,8 +11066,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -10799,8 +11088,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -10821,8 +11110,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -10849,6 +11138,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] + [CLSCompliant(false)] public static void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -10874,8 +11164,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -10901,8 +11191,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] + [CLSCompliant(false)] public static void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -10928,26 +11218,28 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] + [CLSCompliant(false)] public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] + [CLSCompliant(false)] public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] + [CLSCompliant(false)] public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] + [CLSCompliant(false)] public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -10969,6 +11261,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] + [CLSCompliant(false)] public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -10990,6 +11283,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] + [CLSCompliant(false)] public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11010,8 +11304,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11032,8 +11326,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] + [CLSCompliant(false)] public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11054,8 +11348,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] + [CLSCompliant(false)] public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11076,8 +11370,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11099,6 +11393,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] + [CLSCompliant(false)] public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11120,6 +11415,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] + [CLSCompliant(false)] public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11140,8 +11436,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11162,8 +11458,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] + [CLSCompliant(false)] public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11184,8 +11480,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] + [CLSCompliant(false)] public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11206,8 +11502,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11224,6 +11520,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformLocationARB")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(Int32 programObj, String name) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11239,8 +11536,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to a null terminated string containing the name of the uniform variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformLocationARB")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(UInt32 programObj, String name) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11262,6 +11559,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11283,6 +11581,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11303,8 +11602,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11325,8 +11624,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11347,8 +11646,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11369,8 +11668,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11392,6 +11691,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11413,6 +11713,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11433,8 +11734,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11455,8 +11756,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11477,8 +11778,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11499,8 +11800,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11522,6 +11823,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11543,6 +11845,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11563,8 +11866,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11585,8 +11888,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11607,8 +11910,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -11629,95 +11932,102 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -11731,6 +12041,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glIsBufferARB")] + [CLSCompliant(false)] public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -11741,17 +12052,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glIsBufferARB")] + [CLSCompliant(false)] public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] + [CLSCompliant(false)] public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] + [CLSCompliant(false)] public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] @@ -11767,6 +12079,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glIsProgramARB")] + [CLSCompliant(false)] public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -11777,8 +12090,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a potential program object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glIsProgramARB")] + [CLSCompliant(false)] public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -11790,6 +12103,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glIsQueryARB")] + [CLSCompliant(false)] public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } /// [requires: ARB_occlusion_query] @@ -11800,17 +12114,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glIsQueryARB")] + [CLSCompliant(false)] public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] + [CLSCompliant(false)] public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] + [CLSCompliant(false)] public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11822,6 +12137,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glLinkProgramARB")] + [CLSCompliant(false)] public static void LinkProgram(Int32 programObj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -11832,8 +12148,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the handle of the program object to be linked. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glLinkProgramARB")] + [CLSCompliant(false)] public static void LinkProgram(UInt32 programObj) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -11845,6 +12161,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixdARB")] + [CLSCompliant(false)] public static void LoadTransposeMatrix(Double[] m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -11856,6 +12173,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixdARB")] + [CLSCompliant(false)] public static void LoadTransposeMatrix(ref Double m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -11866,8 +12184,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 row-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixdARB")] + [CLSCompliant(false)] public static unsafe void LoadTransposeMatrix(Double* m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -11879,6 +12197,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixfARB")] + [CLSCompliant(false)] public static void LoadTransposeMatrix(Single[] m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -11890,6 +12209,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixfARB")] + [CLSCompliant(false)] public static void LoadTransposeMatrix(ref Single m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -11900,44 +12220,48 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 row-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixfARB")] + [CLSCompliant(false)] public static unsafe void LoadTransposeMatrix(Single* m) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] + [CLSCompliant(false)] public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] + [CLSCompliant(false)] public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] + [CLSCompliant(false)] public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL.ArbBindlessTexture access) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] + [CLSCompliant(false)] public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.ArbBindlessTexture access) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] + [CLSCompliant(false)] public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] + [CLSCompliant(false)] public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] + [CLSCompliant(false)] public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] + [CLSCompliant(false)] public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -11979,18 +12303,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_matrix_palette] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerARB")] + [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerARB")] + [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerARB")] + [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -12003,71 +12330,77 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_matrix_palette] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexubvARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, Byte[] indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexubvARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, ref Byte indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexubvARB")] + [CLSCompliant(false)] public static unsafe void MatrixIndex(Int32 size, Byte* indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, Int32[] indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, ref Int32 indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] + [CLSCompliant(false)] public static unsafe void MatrixIndex(Int32 size, Int32* indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, UInt32[] indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, ref UInt32 indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] + [CLSCompliant(false)] public static unsafe void MatrixIndex(Int32 size, UInt32* indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, Int16[] indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, ref Int16 indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] + [CLSCompliant(false)] public static unsafe void MatrixIndex(Int32 size, Int16* indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, UInt16[] indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] + [CLSCompliant(false)] public static void MatrixIndex(Int32 size, ref UInt16 indices) { throw new NotImplementedException(); } /// [requires: ARB_matrix_palette] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] + [CLSCompliant(false)] public static unsafe void MatrixIndex(Int32 size, UInt16* indices) { throw new NotImplementedException(); } /// [requires: ARB_sample_shading] @@ -12118,8 +12451,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1dvARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12151,8 +12484,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1fvARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12184,8 +12517,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1ivARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12217,8 +12550,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1svARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12251,6 +12584,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dvARB")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12267,6 +12601,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dvARB")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12282,8 +12617,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dvARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12316,6 +12651,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fvARB")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12332,6 +12668,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fvARB")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12347,8 +12684,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fvARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12381,6 +12718,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2ivARB")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12397,6 +12735,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2ivARB")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12412,8 +12751,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2ivARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12446,6 +12785,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2svARB")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12462,6 +12802,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2svARB")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12477,8 +12818,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2svARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12511,6 +12852,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dvARB")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12527,6 +12869,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dvARB")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12542,8 +12885,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dvARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12576,6 +12919,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fvARB")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12592,6 +12936,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fvARB")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12607,8 +12952,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fvARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12641,6 +12986,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3ivARB")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12657,6 +13003,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3ivARB")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12672,8 +13019,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3ivARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12706,6 +13053,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3svARB")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12722,6 +13070,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3svARB")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12737,8 +13086,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3svARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12771,6 +13120,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dvARB")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12787,6 +13137,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dvARB")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12802,8 +13153,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dvARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12836,6 +13187,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fvARB")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12852,6 +13204,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fvARB")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12867,8 +13220,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fvARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12901,6 +13254,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4ivARB")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12917,6 +13271,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4ivARB")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12932,8 +13287,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4ivARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12966,6 +13321,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4svARB")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12982,6 +13338,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4svARB")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_multitexture] @@ -12997,8 +13354,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4svARB")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -13010,6 +13367,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixdARB")] + [CLSCompliant(false)] public static void MultTransposeMatrix(Double[] m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -13021,6 +13379,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixdARB")] + [CLSCompliant(false)] public static void MultTransposeMatrix(ref Double m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -13031,8 +13390,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to 16 consecutive values that are used as the elements of a 4 times 4 row-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixdARB")] + [CLSCompliant(false)] public static unsafe void MultTransposeMatrix(Double* m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -13044,6 +13403,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixfARB")] + [CLSCompliant(false)] public static void MultTransposeMatrix(Single[] m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -13055,6 +13415,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixfARB")] + [CLSCompliant(false)] public static void MultTransposeMatrix(ref Single m) { throw new NotImplementedException(); } /// [requires: ARB_transpose_matrix] @@ -13065,8 +13426,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to 16 consecutive values that are used as the elements of a 4 times 4 row-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixfARB")] + [CLSCompliant(false)] public static unsafe void MultTransposeMatrix(Single* m) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] @@ -13113,6 +13474,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_point_parameters", Version = "", EntryPoint = "glPointParameterfvARB")] + [CLSCompliant(false)] public static void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_point_parameters] @@ -13133,156 +13495,168 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_point_parameters", Version = "", EntryPoint = "glPointParameterfvARB")] + [CLSCompliant(false)] public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] + [CLSCompliant(false)] public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Double @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] + [CLSCompliant(false)] public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Single @params) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_geometry_shader4] @@ -13304,6 +13678,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glProgramParameteriARB")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } /// [requires: ARB_geometry_shader4] @@ -13324,8 +13699,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glProgramParameteriARB")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] @@ -13334,18 +13709,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] + [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute] T3[] @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] + [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute] T3[,] @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] + [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute] T3[,,] @string) where T3 : struct { throw new NotImplementedException(); } @@ -13364,6 +13742,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] + [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute] T3[] @string) where T3 : struct { throw new NotImplementedException(); } @@ -13371,6 +13750,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] + [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute] T3[,] @string) where T3 : struct { throw new NotImplementedException(); } @@ -13378,6 +13758,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_fragment_program|ARB_vertex_program] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] + [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute] T3[,,] @string) where T3 : struct { throw new NotImplementedException(); } @@ -13391,39 +13772,42 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, Int64[] values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, ref Int64 values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, Int64* values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, UInt64[] values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, ref UInt64 values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, UInt64* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -13432,18 +13816,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -13494,6 +13881,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shaderObj, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13520,6 +13908,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shaderObj, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13545,8 +13934,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] + [CLSCompliant(false)] public static unsafe void ShaderSource(Int32 shaderObj, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13572,8 +13961,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shaderObj, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13599,8 +13988,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shaderObj, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13626,8 +14015,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] + [CLSCompliant(false)] public static unsafe void ShaderSource(UInt32 shaderObj, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: ARB_texture_buffer_object] @@ -13649,6 +14038,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] + [CLSCompliant(false)] public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, Int32 buffer) { throw new NotImplementedException(); } /// [requires: ARB_texture_buffer_object] @@ -13669,8 +14059,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] + [CLSCompliant(false)] public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: ARB_sparse_texture] @@ -13743,6 +14133,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fvARB")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13777,6 +14168,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fvARB")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13810,8 +14202,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fvARB")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13880,6 +14272,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1ivARB")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13914,6 +14307,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1ivARB")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -13947,8 +14341,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1ivARB")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14017,6 +14411,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fvARB")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14051,6 +14446,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fvARB")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14084,8 +14480,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fvARB")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14154,6 +14550,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2ivARB")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14187,8 +14584,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2ivARB")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14257,6 +14654,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fvARB")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14291,6 +14689,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fvARB")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14324,8 +14723,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fvARB")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14394,6 +14793,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3ivARB")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14428,6 +14828,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3ivARB")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14461,8 +14862,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3ivARB")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14531,6 +14932,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fvARB")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14565,6 +14967,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fvARB")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14598,8 +15001,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fvARB")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14668,6 +15071,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4ivARB")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14702,6 +15106,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4ivARB")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14735,84 +15140,93 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4ivARB")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static unsafe void UniformHandle(Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static unsafe void UniformHandle(Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix2fvARB")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix2fvARB")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix2fvARB")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix3fvARB")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix3fvARB")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix3fvARB")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix4fvARB")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix4fvARB")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix4fvARB")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: ARB_vertex_buffer_object] @@ -14821,11 +15235,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUseProgramObjectARB")] + [CLSCompliant(false)] public static void UseProgramObject(Int32 programObj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUseProgramObjectARB")] + [CLSCompliant(false)] public static void UseProgramObject(UInt32 programObj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14837,6 +15252,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glValidateProgramARB")] + [CLSCompliant(false)] public static void ValidateProgram(Int32 programObj) { throw new NotImplementedException(); } /// [requires: ARB_shader_objects] @@ -14847,8 +15263,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the handle of the program object to be validated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glValidateProgramARB")] + [CLSCompliant(false)] public static void ValidateProgram(UInt32 programObj) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -14885,6 +15301,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dARB")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Double x) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -14920,8 +15337,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dARB")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -14957,8 +15374,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -14994,8 +15411,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15032,6 +15449,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fARB")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15067,8 +15485,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fARB")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15104,8 +15522,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15141,8 +15559,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15179,6 +15597,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1sARB")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Int16 x) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15214,8 +15633,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1sARB")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15251,8 +15670,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1svARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15288,8 +15707,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1svARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15326,6 +15745,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dARB")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15361,8 +15781,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dARB")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15399,6 +15819,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15435,6 +15856,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15470,8 +15892,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15507,8 +15929,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15544,8 +15966,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15581,8 +16003,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15619,6 +16041,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fARB")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15654,8 +16077,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fARB")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15692,6 +16115,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15728,6 +16152,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15763,8 +16188,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15800,8 +16225,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15837,8 +16262,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15874,8 +16299,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15912,6 +16337,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2sARB")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15947,8 +16373,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2sARB")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -15985,6 +16411,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16021,6 +16448,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16056,8 +16484,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16093,8 +16521,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16130,8 +16558,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16167,8 +16595,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16205,6 +16633,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dARB")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16240,8 +16669,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dARB")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16278,6 +16707,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16314,6 +16744,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16349,8 +16780,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16386,8 +16817,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16423,8 +16854,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16460,8 +16891,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16498,6 +16929,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fARB")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16533,8 +16965,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fARB")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16571,6 +17003,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16607,6 +17040,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16642,8 +17076,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16679,8 +17113,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16716,8 +17150,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16753,8 +17187,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16791,6 +17225,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3sARB")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16826,8 +17261,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3sARB")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16864,6 +17299,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16900,6 +17336,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16935,8 +17372,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -16972,8 +17409,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17009,8 +17446,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17046,8 +17483,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17083,8 +17520,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4bvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, SByte[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17120,8 +17557,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4bvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref SByte v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17157,8 +17594,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4bvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, SByte* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17195,6 +17632,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17230,8 +17668,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17268,6 +17706,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17304,6 +17743,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17339,8 +17779,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17376,8 +17816,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17413,8 +17853,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17450,8 +17890,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17488,6 +17928,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17523,8 +17964,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17561,6 +18002,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17597,6 +18039,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17632,8 +18075,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17669,8 +18112,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17706,8 +18149,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17743,8 +18186,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17781,6 +18224,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17817,6 +18261,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17852,8 +18297,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17889,8 +18334,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17926,8 +18371,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -17963,146 +18408,153 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NbvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, SByte[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NbvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref SByte v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NbvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, SByte* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NuivARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NuivARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NuivARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NusvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, UInt16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NusvARB")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref UInt16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NusvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, UInt16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18139,6 +18591,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4sARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18174,8 +18627,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4sARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18212,6 +18665,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18248,6 +18702,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18283,8 +18738,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18320,8 +18775,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18357,8 +18812,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18394,8 +18849,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18432,6 +18887,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18468,6 +18924,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18503,8 +18960,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18540,8 +18997,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18577,8 +19034,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18614,8 +19071,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18651,8 +19108,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4uivARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18688,8 +19145,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4uivARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18725,8 +19182,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4uivARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18762,8 +19219,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4usvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, UInt16[] v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18799,8 +19256,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4usvARB")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref UInt16 v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18836,8 +19293,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4usvARB")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, UInt16* v) { throw new NotImplementedException(); } /// [requires: ARB_instanced_arrays] @@ -18854,6 +19311,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorARB")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: ARB_instanced_arrays] @@ -18869,36 +19327,38 @@ namespace OpenTK.Graphics.OpenGL /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorARB")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] + [CLSCompliant(false)] public static void VertexAttribL1(Int32 index, Int64 x) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] + [CLSCompliant(false)] public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] + [CLSCompliant(false)] public static void VertexAttribL1(Int32 index, Int64[] v) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] + [CLSCompliant(false)] public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18935,6 +19395,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -18971,6 +19432,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -19009,6 +19471,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -19047,6 +19510,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -19085,6 +19549,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -19122,8 +19587,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] @@ -19159,8 +19624,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -19198,8 +19663,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -19237,8 +19702,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -19276,8 +19741,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -19287,57 +19752,63 @@ namespace OpenTK.Graphics.OpenGL public static void VertexBlend(Int32 count) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightbvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, SByte[] weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightbvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, ref SByte weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightbvARB")] + [CLSCompliant(false)] public static unsafe void Weight(Int32 size, SByte* weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightdvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, Double[] weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightdvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, ref Double weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightdvARB")] + [CLSCompliant(false)] public static unsafe void Weight(Int32 size, Double* weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightfvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, Single[] weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightfvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, ref Single weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightfvARB")] + [CLSCompliant(false)] public static unsafe void Weight(Int32 size, Single* weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightivARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, Int32[] weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightivARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, ref Int32 weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightivARB")] + [CLSCompliant(false)] public static unsafe void Weight(Int32 size, Int32* weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] @@ -19346,18 +19817,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightPointerARB")] + [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightPointerARB")] + [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightPointerARB")] + [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -19370,58 +19844,62 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightsvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, Int16[] weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightsvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, ref Int16 weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightsvARB")] + [CLSCompliant(false)] public static unsafe void Weight(Int32 size, Int16* weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightubvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, Byte[] weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightubvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, ref Byte weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightubvARB")] + [CLSCompliant(false)] public static unsafe void Weight(Int32 size, Byte* weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightuivARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, UInt32[] weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightuivARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, ref UInt32 weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightuivARB")] + [CLSCompliant(false)] public static unsafe void Weight(Int32 size, UInt32* weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightusvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, UInt16[] weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightusvARB")] + [CLSCompliant(false)] public static void Weight(Int32 size, ref UInt16 weights) { throw new NotImplementedException(); } /// [requires: ARB_vertex_blend] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightusvARB")] + [CLSCompliant(false)] public static unsafe void Weight(Int32 size, UInt16* weights) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19444,6 +19922,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dvARB")] + [CLSCompliant(false)] public static void WindowPos2(Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19455,6 +19934,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dvARB")] + [CLSCompliant(false)] public static void WindowPos2(ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19465,8 +19945,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dvARB")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Double* v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19489,6 +19969,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fvARB")] + [CLSCompliant(false)] public static void WindowPos2(Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19500,6 +19981,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fvARB")] + [CLSCompliant(false)] public static void WindowPos2(ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19510,8 +19992,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fvARB")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Single* v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19534,6 +20016,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2ivARB")] + [CLSCompliant(false)] public static void WindowPos2(Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19545,6 +20028,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2ivARB")] + [CLSCompliant(false)] public static void WindowPos2(ref Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19555,8 +20039,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2ivARB")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19579,6 +20063,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2svARB")] + [CLSCompliant(false)] public static void WindowPos2(Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19590,6 +20075,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2svARB")] + [CLSCompliant(false)] public static void WindowPos2(ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19600,8 +20086,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2svARB")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Int16* v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19624,6 +20110,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dvARB")] + [CLSCompliant(false)] public static void WindowPos3(Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19635,6 +20122,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dvARB")] + [CLSCompliant(false)] public static void WindowPos3(ref Double v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19645,8 +20133,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dvARB")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Double* v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19669,6 +20157,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fvARB")] + [CLSCompliant(false)] public static void WindowPos3(Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19680,6 +20169,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fvARB")] + [CLSCompliant(false)] public static void WindowPos3(ref Single v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19690,8 +20180,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fvARB")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Single* v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19714,6 +20204,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3ivARB")] + [CLSCompliant(false)] public static void WindowPos3(Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19725,6 +20216,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3ivARB")] + [CLSCompliant(false)] public static void WindowPos3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19735,8 +20227,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3ivARB")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19759,6 +20251,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3svARB")] + [CLSCompliant(false)] public static void WindowPos3(Int16[] v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19770,6 +20263,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3svARB")] + [CLSCompliant(false)] public static void WindowPos3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: ARB_window_pos] @@ -19780,8 +20274,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3svARB")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Int16* v) { throw new NotImplementedException(); } } @@ -19790,38 +20284,42 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp1ATI")] + [CLSCompliant(false)] public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp1ATI")] + [CLSCompliant(false)] public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp2ATI")] + [CLSCompliant(false)] public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp2ATI")] + [CLSCompliant(false)] public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp3ATI")] + [CLSCompliant(false)] public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp3ATI")] + [CLSCompliant(false)] public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glArrayObjectATI")] + [CLSCompliant(false)] public static void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glArrayObjectATI")] + [CLSCompliant(false)] public static void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] @@ -19830,11 +20328,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glBindFragmentShaderATI")] + [CLSCompliant(false)] public static void BindFragmentShader(Int32 id) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glBindFragmentShaderATI")] + [CLSCompliant(false)] public static void BindFragmentShader(UInt32 id) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -19843,38 +20342,42 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp1ATI")] + [CLSCompliant(false)] public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp1ATI")] + [CLSCompliant(false)] public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp2ATI")] + [CLSCompliant(false)] public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp2ATI")] + [CLSCompliant(false)] public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp3ATI")] + [CLSCompliant(false)] public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.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) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp3ATI")] + [CLSCompliant(false)] public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.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) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glDeleteFragmentShaderATI")] + [CLSCompliant(false)] public static void DeleteFragmentShader(Int32 id) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glDeleteFragmentShaderATI")] + [CLSCompliant(false)] public static void DeleteFragmentShader(UInt32 id) { throw new NotImplementedException(); } /// [requires: ATI_draw_buffers] @@ -19891,6 +20394,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_draw_buffers", Version = "", EntryPoint = "glDrawBuffersATI")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.AtiDrawBuffers[] bufs) { throw new NotImplementedException(); } /// [requires: ATI_draw_buffers] @@ -19907,6 +20411,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_draw_buffers", Version = "", EntryPoint = "glDrawBuffersATI")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.OpenGL.AtiDrawBuffers bufs) { throw new NotImplementedException(); } /// [requires: ATI_draw_buffers] @@ -19922,8 +20427,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_draw_buffers", Version = "", EntryPoint = "glDrawBuffersATI")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.AtiDrawBuffers* bufs) { throw new NotImplementedException(); } /// [requires: ATI_element_array] @@ -19938,21 +20443,23 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_element_array] [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayATI")] + [CLSCompliant(false)] public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count) { throw new NotImplementedException(); } /// [requires: ATI_element_array] [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayATI")] + [CLSCompliant(false)] public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count) { throw new NotImplementedException(); } /// [requires: ATI_element_array] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayATI")] + [CLSCompliant(false)] public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count) { throw new NotImplementedException(); } /// [requires: ATI_element_array] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayATI")] + [CLSCompliant(false)] public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count) { throw new NotImplementedException(); } /// [requires: ATI_element_array] @@ -19961,18 +20468,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_element_array] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glElementPointerATI")] + [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute] T1[] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: ATI_element_array] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glElementPointerATI")] + [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute] T1[,] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: ATI_element_array] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glElementPointerATI")] + [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute] T1[,,] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -19989,218 +20499,237 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glFreeObjectBufferATI")] + [CLSCompliant(false)] public static void FreeObjectBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glFreeObjectBufferATI")] + [CLSCompliant(false)] public static void FreeObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glGenFragmentShadersATI")] + [CLSCompliant(false)] public static Int32 GenFragmentShaders(Int32 range) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glGenFragmentShadersATI")] + [CLSCompliant(false)] public static Int32 GenFragmentShaders(UInt32 range) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetArrayObjectfvATI")] + [CLSCompliant(false)] public static void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetArrayObjectfvATI")] + [CLSCompliant(false)] public static unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetArrayObjectivATI")] + [CLSCompliant(false)] public static void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetArrayObjectivATI")] + [CLSCompliant(false)] public static unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] + [CLSCompliant(false)] public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] + [CLSCompliant(false)] public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] + [CLSCompliant(false)] public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] + [CLSCompliant(false)] public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] + [CLSCompliant(false)] public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] + [CLSCompliant(false)] public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] + [CLSCompliant(false)] public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] + [CLSCompliant(false)] public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] + [CLSCompliant(false)] public static Single GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] + [CLSCompliant(false)] public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute] Single[] param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] + [CLSCompliant(false)] public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute] out Single param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] + [CLSCompliant(false)] public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute] Single* param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterivATI")] + [CLSCompliant(false)] public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterivATI")] + [CLSCompliant(false)] public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterivATI")] + [CLSCompliant(false)] public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] + [CLSCompliant(false)] public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] + [CLSCompliant(false)] public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] + [CLSCompliant(false)] public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] + [CLSCompliant(false)] public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] + [CLSCompliant(false)] public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] + [CLSCompliant(false)] public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] + [CLSCompliant(false)] public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] + [CLSCompliant(false)] public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] + [CLSCompliant(false)] public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] + [CLSCompliant(false)] public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] + [CLSCompliant(false)] public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] + [CLSCompliant(false)] public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] + [CLSCompliant(false)] public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] + [CLSCompliant(false)] public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] + [CLSCompliant(false)] public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] + [CLSCompliant(false)] public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glIsObjectBufferATI")] + [CLSCompliant(false)] public static bool IsObjectBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glIsObjectBufferATI")] + [CLSCompliant(false)] public static bool IsObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: ATI_map_object_buffer] [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glMapObjectBufferATI")] + [CLSCompliant(false)] public static IntPtr MapObjectBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: ATI_map_object_buffer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glMapObjectBufferATI")] + [CLSCompliant(false)] public static IntPtr MapObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] @@ -20209,18 +20738,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glNewObjectBufferATI")] + [CLSCompliant(false)] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute] T1[] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glNewObjectBufferATI")] + [CLSCompliant(false)] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute] T1[,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glNewObjectBufferATI")] + [CLSCompliant(false)] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute] T1[,,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct { throw new NotImplementedException(); } @@ -20233,39 +20765,42 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Byte nx, Byte ny, Byte nz) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, SByte nx, SByte ny, SByte nz) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Byte[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Byte coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] + [CLSCompliant(false)] public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Byte* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, SByte[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref SByte coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] + [CLSCompliant(false)] public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, SByte* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20274,15 +20809,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dvATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dvATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Double coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dvATI")] + [CLSCompliant(false)] public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20291,15 +20828,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fvATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fvATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Single coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fvATI")] + [CLSCompliant(false)] public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20308,15 +20847,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3ivATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3ivATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Int32 coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3ivATI")] + [CLSCompliant(false)] public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20325,24 +20866,27 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3svATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3svATI")] + [CLSCompliant(false)] public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Int16 coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3svATI")] + [CLSCompliant(false)] public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16* coords) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glPassTexCoordATI")] + [CLSCompliant(false)] public static void PassTexCoord(Int32 dst, Int32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glPassTexCoordATI")] + [CLSCompliant(false)] public static void PassTexCoord(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } /// [requires: ATI_pn_triangles] @@ -20355,39 +20899,42 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSampleMapATI")] + [CLSCompliant(false)] public static void SampleMap(Int32 dst, Int32 interp, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSampleMapATI")] + [CLSCompliant(false)] public static void SampleMap(UInt32 dst, UInt32 interp, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] + [CLSCompliant(false)] public static void SetFragmentShaderConstant(Int32 dst, Single[] value) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] + [CLSCompliant(false)] public static void SetFragmentShaderConstant(Int32 dst, ref Single value) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] + [CLSCompliant(false)] public static unsafe void SetFragmentShaderConstant(Int32 dst, Single* value) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] + [CLSCompliant(false)] public static void SetFragmentShaderConstant(UInt32 dst, Single[] value) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] + [CLSCompliant(false)] public static void SetFragmentShaderConstant(UInt32 dst, ref Single value) { throw new NotImplementedException(); } /// [requires: ATI_fragment_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] + [CLSCompliant(false)] public static unsafe void SetFragmentShaderConstant(UInt32 dst, Single* value) { throw new NotImplementedException(); } /// [requires: ATI_separate_stencil] @@ -20414,6 +20961,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_separate_stencil", Version = "", EntryPoint = "glStencilFuncSeparateATI")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: ATI_separate_stencil] @@ -20439,8 +20987,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_separate_stencil", Version = "", EntryPoint = "glStencilFuncSeparateATI")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: ATI_separate_stencil] @@ -20471,127 +21019,140 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_envmap_bumpmap] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterfvATI")] + [CLSCompliant(false)] public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, Single[] param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterfvATI")] + [CLSCompliant(false)] public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, ref Single param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterfvATI")] + [CLSCompliant(false)] public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, Single* param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterivATI")] + [CLSCompliant(false)] public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterivATI")] + [CLSCompliant(false)] public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, ref Int32 param) { throw new NotImplementedException(); } /// [requires: ATI_envmap_bumpmap] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterivATI")] + [CLSCompliant(false)] public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, Int32* param) { throw new NotImplementedException(); } /// [requires: ATI_map_object_buffer] [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glUnmapObjectBufferATI")] + [CLSCompliant(false)] public static void UnmapObjectBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: ATI_map_object_buffer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glUnmapObjectBufferATI")] + [CLSCompliant(false)] public static void UnmapObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute] T3[] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute] T3[,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute] T3[,,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute] ref T3 pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute] T3[] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute] T3[,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute] T3[,,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] + [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute] ref T3 pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glVariantArrayObjectATI")] + [CLSCompliant(false)] public static void VariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) { throw new NotImplementedException(); } /// [requires: ATI_vertex_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glVariantArrayObjectATI")] + [CLSCompliant(false)] public static void VariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] [Obsolete("Use VertexAttribPointerType overload instead")] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glVertexAttribArrayObjectATI")] + [CLSCompliant(false)] public static void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glVertexAttribArrayObjectATI")] + [CLSCompliant(false)] public static void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] [Obsolete("Use VertexAttribPointerType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glVertexAttribArrayObjectATI")] + [CLSCompliant(false)] public static void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { throw new NotImplementedException(); } /// [requires: ATI_vertex_attrib_array_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glVertexAttribArrayObjectATI")] + [CLSCompliant(false)] public static void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20607,8 +21168,8 @@ namespace OpenTK.Graphics.OpenGL public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1dvATI")] + [CLSCompliant(false)] public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20616,8 +21177,8 @@ namespace OpenTK.Graphics.OpenGL public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1fvATI")] + [CLSCompliant(false)] public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20625,8 +21186,8 @@ namespace OpenTK.Graphics.OpenGL public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1ivATI")] + [CLSCompliant(false)] public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20634,8 +21195,8 @@ namespace OpenTK.Graphics.OpenGL public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1svATI")] + [CLSCompliant(false)] public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20644,15 +21205,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dvATI")] + [CLSCompliant(false)] public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dvATI")] + [CLSCompliant(false)] public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Double coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dvATI")] + [CLSCompliant(false)] public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20661,15 +21224,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fvATI")] + [CLSCompliant(false)] public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fvATI")] + [CLSCompliant(false)] public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Single coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fvATI")] + [CLSCompliant(false)] public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20678,15 +21243,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2ivATI")] + [CLSCompliant(false)] public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2ivATI")] + [CLSCompliant(false)] public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Int32 coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2ivATI")] + [CLSCompliant(false)] public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20695,15 +21262,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2svATI")] + [CLSCompliant(false)] public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2svATI")] + [CLSCompliant(false)] public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Int16 coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2svATI")] + [CLSCompliant(false)] public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20712,15 +21281,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dvATI")] + [CLSCompliant(false)] public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dvATI")] + [CLSCompliant(false)] public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Double coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dvATI")] + [CLSCompliant(false)] public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20729,15 +21300,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fvATI")] + [CLSCompliant(false)] public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fvATI")] + [CLSCompliant(false)] public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Single coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fvATI")] + [CLSCompliant(false)] public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20746,15 +21319,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3ivATI")] + [CLSCompliant(false)] public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3ivATI")] + [CLSCompliant(false)] public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Int32 coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3ivATI")] + [CLSCompliant(false)] public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20763,15 +21338,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3svATI")] + [CLSCompliant(false)] public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3svATI")] + [CLSCompliant(false)] public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Int16 coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3svATI")] + [CLSCompliant(false)] public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20780,15 +21357,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dvATI")] + [CLSCompliant(false)] public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dvATI")] + [CLSCompliant(false)] public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Double coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dvATI")] + [CLSCompliant(false)] public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20797,15 +21376,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fvATI")] + [CLSCompliant(false)] public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fvATI")] + [CLSCompliant(false)] public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Single coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fvATI")] + [CLSCompliant(false)] public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20814,15 +21395,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4ivATI")] + [CLSCompliant(false)] public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4ivATI")] + [CLSCompliant(false)] public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Int32 coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4ivATI")] + [CLSCompliant(false)] public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32* coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] @@ -20831,15 +21414,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4svATI")] + [CLSCompliant(false)] public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16[] coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4svATI")] + [CLSCompliant(false)] public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, ref Int16 coords) { throw new NotImplementedException(); } /// [requires: ATI_vertex_streams] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4svATI")] + [CLSCompliant(false)] public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16* coords) { throw new NotImplementedException(); } } @@ -20874,6 +21459,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glActiveShaderProgram")] + [CLSCompliant(false)] public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -20889,8 +21475,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to set as the active program pipeline object pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glActiveShaderProgram")] + [CLSCompliant(false)] public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } /// [requires: v1.3] @@ -20939,6 +21525,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] + [CLSCompliant(false)] public static bool AreTexturesResident(Int32 n, Int32[] textures, [OutAttribute] bool[] residences) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -20960,6 +21547,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] + [CLSCompliant(false)] public static bool AreTexturesResident(Int32 n, ref Int32 textures, [OutAttribute] out bool residences) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -20980,8 +21568,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the texture residence status is returned. The residence status of a texture named by an element of textures is returned in the corresponding element of residences. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] + [CLSCompliant(false)] public static unsafe bool AreTexturesResident(Int32 n, Int32* textures, [OutAttribute] bool* residences) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -21002,8 +21590,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the texture residence status is returned. The residence status of a texture named by an element of textures is returned in the corresponding element of residences. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] + [CLSCompliant(false)] public static bool AreTexturesResident(Int32 n, UInt32[] textures, [OutAttribute] bool[] residences) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -21024,8 +21612,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the texture residence status is returned. The residence status of a texture named by an element of textures is returned in the corresponding element of residences. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] + [CLSCompliant(false)] public static bool AreTexturesResident(Int32 n, ref UInt32 textures, [OutAttribute] out bool residences) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -21046,8 +21634,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the texture residence status is returned. The residence status of a texture named by an element of textures is returned in the corresponding element of residences. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] + [CLSCompliant(false)] public static unsafe bool AreTexturesResident(Int32 n, UInt32* textures, [OutAttribute] bool* residences) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -21075,6 +21663,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] + [CLSCompliant(false)] public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -21090,8 +21679,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the shader object that is to be attached. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] + [CLSCompliant(false)] public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -21131,6 +21720,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginConditionalRender")] + [CLSCompliant(false)] public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.ConditionalRenderType mode) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21146,8 +21736,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginConditionalRender")] + [CLSCompliant(false)] public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.ConditionalRenderType mode) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -21164,6 +21754,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 id) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -21179,8 +21770,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -21202,6 +21793,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glBeginQueryIndexed")] + [CLSCompliant(false)] public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, Int32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -21222,8 +21814,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glBeginQueryIndexed")] + [CLSCompliant(false)] public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21268,6 +21860,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] + [CLSCompliant(false)] public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -21288,8 +21881,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a null terminated string containing the name of the vertex shader attribute variable to which index is to be bound. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] + [CLSCompliant(false)] public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -21306,6 +21899,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -21321,8 +21915,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21344,6 +21938,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21364,8 +21959,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of a buffer object to bind to the specified binding point. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21388,6 +21983,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21409,8 +22005,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use BufferRangeTarget overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21442,6 +22038,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21472,8 +22069,8 @@ namespace OpenTK.Graphics.OpenGL /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21506,6 +22103,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21537,8 +22135,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use BufferRangeTarget overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21565,6 +22163,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21591,6 +22190,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, ref Int32 buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21616,8 +22216,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, Int32* buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21643,8 +22243,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21670,8 +22270,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, ref UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21697,8 +22297,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21725,6 +22325,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, IntPtr[] sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21751,6 +22352,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref IntPtr sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21776,8 +22378,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, IntPtr* sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21803,8 +22405,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, IntPtr[] sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21830,8 +22432,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref IntPtr sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -21857,8 +22459,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, IntPtr* sizes) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21880,6 +22482,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] + [CLSCompliant(false)] public static void BindFragDataLocation(Int32 program, Int32 color, String name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -21900,8 +22503,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of the user-defined varying out variable whose binding to modify /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] + [CLSCompliant(false)] public static void BindFragDataLocation(UInt32 program, UInt32 color, String name) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_blend_func_extended|VERSION_3_3] @@ -21928,6 +22531,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glBindFragDataLocationIndexed")] + [CLSCompliant(false)] public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_blend_func_extended|VERSION_3_3] @@ -21953,8 +22557,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of the user-defined varying out variable whose binding to modify /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glBindFragDataLocationIndexed")] + [CLSCompliant(false)] public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -21971,6 +22575,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -21986,8 +22591,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the framebuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_image_load_store|VERSION_4_2] @@ -22029,6 +22634,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glBindImageTexture")] + [CLSCompliant(false)] public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.TextureAccess access, OpenTK.Graphics.OpenGL.SizedInternalFormat format) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_image_load_store|VERSION_4_2] @@ -22069,8 +22675,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the format that the elements of the image will be treated as for the purposes of formatted stores. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glBindImageTexture")] + [CLSCompliant(false)] public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.TextureAccess access, OpenTK.Graphics.OpenGL.SizedInternalFormat format) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22092,6 +22698,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static void BindImageTextures(Int32 first, Int32 count, Int32[] textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22113,6 +22720,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static void BindImageTextures(Int32 first, Int32 count, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22133,8 +22741,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static unsafe void BindImageTextures(Int32 first, Int32 count, Int32* textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22155,8 +22763,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static void BindImageTextures(UInt32 first, Int32 count, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22177,8 +22785,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static void BindImageTextures(UInt32 first, Int32 count, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22199,8 +22807,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static unsafe void BindImageTextures(UInt32 first, Int32 count, UInt32* textures) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22212,6 +22820,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glBindProgramPipeline")] + [CLSCompliant(false)] public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22222,8 +22831,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the pipeline object to bind to the context. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glBindProgramPipeline")] + [CLSCompliant(false)] public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -22240,6 +22849,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -22255,8 +22865,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the renderbuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -22273,6 +22883,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glBindSampler")] + [CLSCompliant(false)] public static void BindSampler(Int32 unit, Int32 sampler) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -22288,8 +22899,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a sampler. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glBindSampler")] + [CLSCompliant(false)] public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22311,6 +22922,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static void BindSamplers(Int32 first, Int32 count, Int32[] samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22332,6 +22944,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static void BindSamplers(Int32 first, Int32 count, ref Int32 samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22352,8 +22965,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing sampler objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static unsafe void BindSamplers(Int32 first, Int32 count, Int32* samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22374,8 +22987,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing sampler objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static void BindSamplers(UInt32 first, Int32 count, UInt32[] samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22396,8 +23009,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing sampler objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static void BindSamplers(UInt32 first, Int32 count, ref UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22418,8 +23031,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing sampler objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static unsafe void BindSamplers(UInt32 first, Int32 count, UInt32* samplers) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -22436,6 +23049,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -22451,8 +23065,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22474,6 +23088,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static void BindTextures(Int32 first, Int32 count, Int32[] textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22495,6 +23110,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static void BindTextures(Int32 first, Int32 count, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22515,8 +23131,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static unsafe void BindTextures(Int32 first, Int32 count, Int32* textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22537,8 +23153,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static void BindTextures(UInt32 first, Int32 count, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22559,8 +23175,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static void BindTextures(UInt32 first, Int32 count, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22581,8 +23197,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static unsafe void BindTextures(UInt32 first, Int32 count, UInt32* textures) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -22599,6 +23215,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, Int32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -22614,8 +23231,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -22627,6 +23244,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] + [CLSCompliant(false)] public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -22637,8 +23255,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the vertex array to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] + [CLSCompliant(false)] public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -22665,6 +23283,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glBindVertexBuffer")] + [CLSCompliant(false)] public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -22690,8 +23309,8 @@ namespace OpenTK.Graphics.OpenGL /// The distance between elements within the buffer. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glBindVertexBuffer")] + [CLSCompliant(false)] public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22723,6 +23342,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static void BindVertexBuffers(Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22754,6 +23374,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static void BindVertexBuffers(Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22784,8 +23405,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of strides to associate with the binding points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static unsafe void BindVertexBuffers(Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22816,8 +23437,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of strides to associate with the binding points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static void BindVertexBuffers(UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22848,8 +23469,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of strides to associate with the binding points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static void BindVertexBuffers(UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -22880,8 +23501,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of strides to associate with the binding points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -22908,6 +23529,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBitmap")] + [CLSCompliant(false)] public static void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, Byte[] bitmap) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -22934,6 +23556,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBitmap")] + [CLSCompliant(false)] public static void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, ref Byte bitmap) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -22959,8 +23582,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of the bitmap image. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBitmap")] + [CLSCompliant(false)] public static unsafe void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, Byte* bitmap) { throw new NotImplementedException(); } /// [requires: v1.4 and ARB_imaging|VERSION_1_4] @@ -23022,6 +23645,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] + [CLSCompliant(false)] public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23038,6 +23662,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] + [CLSCompliant(false)] public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23054,8 +23679,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use BlendEquationMode overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] + [CLSCompliant(false)] public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23071,8 +23696,8 @@ namespace OpenTK.Graphics.OpenGL /// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] + [CLSCompliant(false)] public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -23115,6 +23740,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationSeparatei")] + [CLSCompliant(false)] public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23135,8 +23761,8 @@ namespace OpenTK.Graphics.OpenGL /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationSeparatei")] + [CLSCompliant(false)] public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -23180,6 +23806,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] + [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23201,6 +23828,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] + [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc src, OpenTK.Graphics.OpenGL.BlendingFactorDest dst) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23222,8 +23850,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use BlendingFactorSrc overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23244,8 +23872,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA. GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_ALPHA, and GL_ONE_MINUS_CONSTANT_ALPHA. The initial value is GL_ZERO. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc src, OpenTK.Graphics.OpenGL.BlendingFactorDest dst) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -23341,6 +23969,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] + [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23372,6 +24001,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] + [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dstAlpha) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23403,8 +24033,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use BlendingFactorSrc overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -23435,8 +24065,8 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha destination blending factor is computed. The initial value is GL_ZERO. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dstAlpha) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -23515,6 +24145,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -23543,6 +24174,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -23571,6 +24203,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -23653,6 +24286,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] + [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct { throw new NotImplementedException(); } @@ -23681,6 +24315,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] + [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct { throw new NotImplementedException(); } @@ -23709,6 +24344,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] + [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct { throw new NotImplementedException(); } @@ -23791,6 +24427,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -23819,6 +24456,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -23847,6 +24485,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -23888,6 +24527,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallList")] + [CLSCompliant(false)] public static void CallList(Int32 list) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -23898,8 +24538,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the integer name of the display list to be executed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallList")] + [CLSCompliant(false)] public static void CallList(UInt32 list) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -23942,6 +24582,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallLists")] + [CLSCompliant(false)] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute] T2[] lists) where T2 : struct { throw new NotImplementedException(); } @@ -23965,6 +24606,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallLists")] + [CLSCompliant(false)] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute] T2[,] lists) where T2 : struct { throw new NotImplementedException(); } @@ -23988,6 +24630,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallLists")] + [CLSCompliant(false)] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute] T2[,,] lists) where T2 : struct { throw new NotImplementedException(); } @@ -24134,6 +24777,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] + [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new NotImplementedException(); } @@ -24172,6 +24816,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] + [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new NotImplementedException(); } @@ -24210,6 +24855,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] + [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new NotImplementedException(); } @@ -24344,6 +24990,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -24375,6 +25022,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -24405,8 +25053,8 @@ namespace OpenTK.Graphics.OpenGL /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -24438,6 +25086,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -24469,6 +25118,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -24499,8 +25149,8 @@ namespace OpenTK.Graphics.OpenGL /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_clear_buffer_object|VERSION_4_3] @@ -24583,6 +25233,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] + [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } @@ -24626,6 +25277,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] + [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } @@ -24669,6 +25321,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] + [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } @@ -24744,8 +25397,8 @@ namespace OpenTK.Graphics.OpenGL /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -24776,8 +25429,8 @@ namespace OpenTK.Graphics.OpenGL /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -24808,8 +25461,8 @@ namespace OpenTK.Graphics.OpenGL /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -24896,6 +25549,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_clear_texture|VERSION_4_4] @@ -24927,6 +25581,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new NotImplementedException(); } @@ -24960,6 +25615,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new NotImplementedException(); } @@ -24993,6 +25649,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new NotImplementedException(); } @@ -25026,6 +25683,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new NotImplementedException(); } @@ -25058,8 +25716,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_clear_texture|VERSION_4_4] @@ -25090,8 +25748,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new NotImplementedException(); } @@ -25124,8 +25782,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new NotImplementedException(); } @@ -25158,8 +25816,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new NotImplementedException(); } @@ -25192,8 +25850,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new NotImplementedException(); } @@ -25257,6 +25915,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_clear_texture|VERSION_4_4] @@ -25318,6 +25977,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -25381,6 +26041,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -25444,6 +26105,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -25507,6 +26169,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T10 data) where T10 : struct { throw new NotImplementedException(); } @@ -25569,8 +26232,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_clear_texture|VERSION_4_4] @@ -25631,8 +26294,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -25695,8 +26358,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -25759,8 +26422,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -25823,8 +26486,8 @@ namespace OpenTK.Graphics.OpenGL /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T10 data) where T10 : struct { throw new NotImplementedException(); } @@ -25859,6 +26522,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -25879,8 +26543,8 @@ namespace OpenTK.Graphics.OpenGL /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -25903,6 +26567,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ClientWaitSyncFlags overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -25924,8 +26589,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ClientWaitSyncFlags overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -25947,8 +26612,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ClientWaitSyncFlags overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -25965,6 +26630,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClipPlane")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, Double[] equation) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -25981,6 +26647,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClipPlane")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, ref Double equation) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -25996,8 +26663,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClipPlane")] + [CLSCompliant(false)] public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, Double* equation) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26013,8 +26680,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3b")] + [CLSCompliant(false)] public static void Color3(SByte red, SByte green, SByte blue) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26030,8 +26697,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3bv")] + [CLSCompliant(false)] public static void Color3(SByte[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26047,8 +26714,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3bv")] + [CLSCompliant(false)] public static void Color3(ref SByte v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26064,8 +26731,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3bv")] + [CLSCompliant(false)] public static unsafe void Color3(SByte* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26098,6 +26765,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3dv")] + [CLSCompliant(false)] public static void Color3(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26114,6 +26782,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3dv")] + [CLSCompliant(false)] public static void Color3(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26129,8 +26798,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3dv")] + [CLSCompliant(false)] public static unsafe void Color3(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26163,6 +26832,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3fv")] + [CLSCompliant(false)] public static void Color3(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26179,6 +26849,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3fv")] + [CLSCompliant(false)] public static void Color3(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26194,8 +26865,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3fv")] + [CLSCompliant(false)] public static unsafe void Color3(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26228,6 +26899,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3iv")] + [CLSCompliant(false)] public static void Color3(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26244,6 +26916,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3iv")] + [CLSCompliant(false)] public static void Color3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26259,8 +26932,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3iv")] + [CLSCompliant(false)] public static unsafe void Color3(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26293,6 +26966,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3sv")] + [CLSCompliant(false)] public static void Color3(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26309,6 +26983,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3sv")] + [CLSCompliant(false)] public static void Color3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26324,8 +26999,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3sv")] + [CLSCompliant(false)] public static unsafe void Color3(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26358,6 +27033,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ubv")] + [CLSCompliant(false)] public static void Color3(Byte[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26374,6 +27050,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ubv")] + [CLSCompliant(false)] public static void Color3(ref Byte v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26389,8 +27066,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ubv")] + [CLSCompliant(false)] public static unsafe void Color3(Byte* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26406,8 +27083,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ui")] + [CLSCompliant(false)] public static void Color3(UInt32 red, UInt32 green, UInt32 blue) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26423,8 +27100,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3uiv")] + [CLSCompliant(false)] public static void Color3(UInt32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26440,8 +27117,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3uiv")] + [CLSCompliant(false)] public static void Color3(ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26457,8 +27134,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3uiv")] + [CLSCompliant(false)] public static unsafe void Color3(UInt32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26474,8 +27151,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3us")] + [CLSCompliant(false)] public static void Color3(UInt16 red, UInt16 green, UInt16 blue) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26491,8 +27168,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3usv")] + [CLSCompliant(false)] public static void Color3(UInt16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26508,8 +27185,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3usv")] + [CLSCompliant(false)] public static void Color3(ref UInt16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26525,8 +27202,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3usv")] + [CLSCompliant(false)] public static unsafe void Color3(UInt16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26542,8 +27219,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4b")] + [CLSCompliant(false)] public static void Color4(SByte red, SByte green, SByte blue, SByte alpha) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26559,8 +27236,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4bv")] + [CLSCompliant(false)] public static void Color4(SByte[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26576,8 +27253,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4bv")] + [CLSCompliant(false)] public static void Color4(ref SByte v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26593,8 +27270,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4bv")] + [CLSCompliant(false)] public static unsafe void Color4(SByte* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26627,6 +27304,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4dv")] + [CLSCompliant(false)] public static void Color4(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26643,6 +27321,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4dv")] + [CLSCompliant(false)] public static void Color4(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26658,8 +27337,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4dv")] + [CLSCompliant(false)] public static unsafe void Color4(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26692,6 +27371,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4fv")] + [CLSCompliant(false)] public static void Color4(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26708,6 +27388,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4fv")] + [CLSCompliant(false)] public static void Color4(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26723,8 +27404,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4fv")] + [CLSCompliant(false)] public static unsafe void Color4(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26757,6 +27438,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4iv")] + [CLSCompliant(false)] public static void Color4(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26773,6 +27455,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4iv")] + [CLSCompliant(false)] public static void Color4(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26788,8 +27471,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4iv")] + [CLSCompliant(false)] public static unsafe void Color4(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26822,6 +27505,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4sv")] + [CLSCompliant(false)] public static void Color4(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26838,6 +27522,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4sv")] + [CLSCompliant(false)] public static void Color4(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26853,8 +27538,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4sv")] + [CLSCompliant(false)] public static unsafe void Color4(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26887,6 +27572,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ubv")] + [CLSCompliant(false)] public static void Color4(Byte[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26903,6 +27589,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ubv")] + [CLSCompliant(false)] public static void Color4(ref Byte v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26918,8 +27605,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ubv")] + [CLSCompliant(false)] public static unsafe void Color4(Byte* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26935,8 +27622,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ui")] + [CLSCompliant(false)] public static void Color4(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26952,8 +27639,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4uiv")] + [CLSCompliant(false)] public static void Color4(UInt32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26969,8 +27656,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4uiv")] + [CLSCompliant(false)] public static void Color4(ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -26986,8 +27673,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4uiv")] + [CLSCompliant(false)] public static unsafe void Color4(UInt32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -27003,8 +27690,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4us")] + [CLSCompliant(false)] public static void Color4(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -27020,8 +27707,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4usv")] + [CLSCompliant(false)] public static void Color4(UInt16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -27037,8 +27724,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4usv")] + [CLSCompliant(false)] public static void Color4(ref UInt16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -27054,8 +27741,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4usv")] + [CLSCompliant(false)] public static unsafe void Color4(UInt16* v) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -27088,6 +27775,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glColorMaski")] + [CLSCompliant(false)] public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -27103,8 +27791,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all GL_TRUE, indicating that the color components are written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glColorMaski")] + [CLSCompliant(false)] public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -27125,40 +27813,42 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3ui")] + [CLSCompliant(false)] public static void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3ui")] + [CLSCompliant(false)] public static void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3uiv")] + [CLSCompliant(false)] public static unsafe void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3uiv")] + [CLSCompliant(false)] public static unsafe void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4ui")] + [CLSCompliant(false)] public static void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4ui")] + [CLSCompliant(false)] public static void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4uiv")] + [CLSCompliant(false)] public static unsafe void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4uiv")] + [CLSCompliant(false)] public static unsafe void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* color) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -27211,6 +27901,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glColorPointer")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -27239,6 +27930,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glColorPointer")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -27267,6 +27959,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glColorPointer")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -27369,6 +28062,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] + [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] data) where T5 : struct { throw new NotImplementedException(); } @@ -27407,6 +28101,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] + [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] data) where T5 : struct { throw new NotImplementedException(); } @@ -27445,6 +28140,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] + [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] data) where T5 : struct { throw new NotImplementedException(); } @@ -27557,6 +28253,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] table) where T5 : struct { throw new NotImplementedException(); } @@ -27595,6 +28292,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] table) where T5 : struct { throw new NotImplementedException(); } @@ -27633,6 +28331,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] table) where T5 : struct { throw new NotImplementedException(); } @@ -27694,6 +28393,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Single[] @params) { throw new NotImplementedException(); } /// @@ -27715,6 +28415,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, ref Single @params) { throw new NotImplementedException(); } /// @@ -27735,8 +28436,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameters are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] + [CLSCompliant(false)] public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Single* @params) { throw new NotImplementedException(); } /// @@ -27758,6 +28459,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Int32[] @params) { throw new NotImplementedException(); } /// @@ -27779,6 +28481,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, ref Int32 @params) { throw new NotImplementedException(); } /// @@ -27799,8 +28502,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameters are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] + [CLSCompliant(false)] public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -27812,6 +28515,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] + [CLSCompliant(false)] public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -27822,8 +28526,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the shader object to be compiled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] + [CLSCompliant(false)] public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v1.3] @@ -27906,6 +28610,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] + [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } @@ -27949,6 +28654,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] + [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } @@ -27992,6 +28698,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] + [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } @@ -28129,6 +28836,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -28177,6 +28885,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -28225,6 +28934,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -28377,6 +29087,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -28430,6 +29141,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -28483,6 +29195,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -28620,6 +29333,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] + [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } @@ -28663,6 +29377,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] + [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } @@ -28706,6 +29421,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] + [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } @@ -28853,6 +29569,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -28906,6 +29623,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -28959,6 +29677,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -29126,6 +29845,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -29184,6 +29904,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -29242,6 +29963,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -29374,6 +30096,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] image) where T5 : struct { throw new NotImplementedException(); } @@ -29412,6 +30135,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] image) where T5 : struct { throw new NotImplementedException(); } @@ -29450,6 +30174,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] image) where T5 : struct { throw new NotImplementedException(); } @@ -29572,6 +30297,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] image) where T6 : struct { throw new NotImplementedException(); } @@ -29615,6 +30341,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] image) where T6 : struct { throw new NotImplementedException(); } @@ -29658,6 +30385,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] image) where T6 : struct { throw new NotImplementedException(); } @@ -29751,6 +30479,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] + [CLSCompliant(false)] public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single[] @params) { throw new NotImplementedException(); } /// @@ -29774,8 +30503,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single* @params) { throw new NotImplementedException(); } /// @@ -29824,6 +30553,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] + [CLSCompliant(false)] public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// @@ -29847,8 +30577,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_copy_buffer|VERSION_3_1] @@ -30070,6 +30800,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_copy_image|VERSION_4_3", Version = "4.3", EntryPoint = "glCopyImageSubData")] + [CLSCompliant(false)] public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_copy_image|VERSION_4_3] @@ -30145,8 +30876,8 @@ namespace OpenTK.Graphics.OpenGL /// The depth of the region to be copied. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_copy_image|VERSION_4_3", Version = "4.3", EntryPoint = "glCopyImageSubData")] + [CLSCompliant(false)] public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -30444,6 +31175,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -30462,6 +31194,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -30480,6 +31213,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -30536,6 +31270,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -30572,6 +31307,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -30607,8 +31343,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -30644,8 +31380,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -30681,8 +31417,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -30718,8 +31454,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -30756,6 +31492,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSourceExternal source, OpenTK.Graphics.OpenGL.DebugType type, Int32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -30791,8 +31528,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSourceExternal source, OpenTK.Graphics.OpenGL.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -30809,6 +31546,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(Int32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -30824,8 +31562,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -30842,6 +31580,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -30858,6 +31597,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref Int32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -30873,8 +31613,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, Int32* buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -30890,8 +31630,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -30907,8 +31647,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -30924,8 +31664,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -30942,6 +31682,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffer(Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -30957,8 +31698,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffer(UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -30975,6 +31716,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -30991,6 +31733,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31006,8 +31749,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31023,8 +31766,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31040,8 +31783,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31057,8 +31800,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -31075,6 +31818,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDeleteLists")] + [CLSCompliant(false)] public static void DeleteLists(Int32 list, Int32 range) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -31090,8 +31834,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of display lists to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDeleteLists")] + [CLSCompliant(false)] public static void DeleteLists(UInt32 list, Int32 range) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -31103,6 +31847,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -31113,8 +31858,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] + [CLSCompliant(false)] public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31131,6 +31876,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(Int32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31146,8 +31892,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31164,6 +31910,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31180,6 +31927,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref Int32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31195,8 +31943,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, Int32* pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31212,8 +31960,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31229,8 +31977,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31246,8 +31994,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -31264,6 +32012,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQuery(Int32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -31279,8 +32028,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQuery(UInt32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -31297,6 +32046,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -31313,6 +32063,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -31328,8 +32079,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -31345,8 +32096,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -31362,8 +32113,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -31379,8 +32130,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31397,6 +32148,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31412,8 +32164,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31430,6 +32182,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31446,6 +32199,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31461,8 +32215,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31478,8 +32232,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31495,8 +32249,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -31512,8 +32266,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -31530,6 +32284,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSampler(Int32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -31545,8 +32300,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSampler(UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -31563,6 +32318,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, Int32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -31579,6 +32335,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, ref Int32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -31594,8 +32351,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static unsafe void DeleteSamplers(Int32 count, Int32* samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -31611,8 +32368,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, UInt32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -31628,8 +32385,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, ref UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -31645,8 +32402,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static unsafe void DeleteSamplers(Int32 count, UInt32* samplers) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -31658,6 +32415,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] + [CLSCompliant(false)] public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -31668,8 +32426,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the shader object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] + [CLSCompliant(false)] public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -31697,6 +32455,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(Int32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -31712,8 +32471,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(UInt32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -31730,6 +32489,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, Int32[] textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -31746,6 +32506,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -31761,8 +32522,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, Int32* textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -31778,8 +32539,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -31795,8 +32556,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -31812,8 +32573,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, UInt32* textures) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -31830,6 +32591,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedback(Int32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -31845,8 +32607,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedback(UInt32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -31863,6 +32625,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -31879,6 +32642,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -31894,8 +32658,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void DeleteTransformFeedbacks(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -31911,8 +32675,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -31928,8 +32692,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -31945,8 +32709,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void DeleteTransformFeedbacks(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -31963,6 +32727,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArray(Int32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -31978,8 +32743,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArray(UInt32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -31996,6 +32761,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, Int32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -32012,6 +32778,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref Int32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -32027,8 +32794,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, Int32* arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -32044,8 +32811,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -32061,8 +32828,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref UInt32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -32078,8 +32845,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -32139,6 +32906,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static void DepthRangeArray(Int32 first, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -32160,6 +32928,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static void DepthRangeArray(Int32 first, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -32180,8 +32949,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the near and far values for the depth range of each modified viewport. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static unsafe void DepthRangeArray(Int32 first, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -32202,8 +32971,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the near and far values for the depth range of each modified viewport. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static void DepthRangeArray(UInt32 first, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -32224,8 +32993,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the near and far values for the depth range of each modified viewport. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static void DepthRangeArray(UInt32 first, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -32246,8 +33015,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the near and far values for the depth range of each modified viewport. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -32285,6 +33054,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeIndexed")] + [CLSCompliant(false)] public static void DepthRangeIndexed(Int32 index, Double n, Double f) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -32305,8 +33075,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeIndexed")] + [CLSCompliant(false)] public static void DepthRangeIndexed(UInt32 index, Double n, Double f) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -32323,6 +33093,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] + [CLSCompliant(false)] public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -32338,8 +33109,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the shader object to be detached. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] + [CLSCompliant(false)] public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -32352,20 +33123,22 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glDisablei")] + [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glDisablei")] + [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_compute_shader|VERSION_4_3] @@ -32387,6 +33160,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchCompute")] + [CLSCompliant(false)] public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_compute_shader|VERSION_4_3] @@ -32407,8 +33181,8 @@ namespace OpenTK.Graphics.OpenGL /// The number of work groups to be launched in the Z dimension. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchCompute")] + [CLSCompliant(false)] public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_compute_shader|VERSION_4_3] @@ -32495,6 +33269,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] + [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct { throw new NotImplementedException(); } @@ -32513,6 +33288,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] + [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct { throw new NotImplementedException(); } @@ -32531,6 +33307,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] + [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct { throw new NotImplementedException(); } @@ -32635,6 +33412,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawArraysInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -32665,8 +33443,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawArraysInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -32694,6 +33472,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -32710,6 +33489,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -32725,8 +33505,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -32807,6 +33587,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -32836,6 +33617,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -32865,6 +33647,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -32974,6 +33757,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -33002,6 +33786,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -33030,6 +33815,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -33124,6 +33910,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -33158,6 +33945,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -33192,6 +33980,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -33290,6 +34079,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -33323,6 +34113,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -33356,6 +34147,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -33433,6 +34225,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] + [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct { throw new NotImplementedException(); } @@ -33456,6 +34249,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] + [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct { throw new NotImplementedException(); } @@ -33479,6 +34273,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] + [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct { throw new NotImplementedException(); } @@ -33568,6 +34363,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -33602,6 +34398,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -33636,6 +34433,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -33734,6 +34532,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -33767,6 +34566,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -33800,6 +34600,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -33871,6 +34672,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -33906,8 +34708,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -33944,6 +34746,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -33981,8 +34784,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34021,6 +34824,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34058,8 +34862,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34098,6 +34902,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34135,8 +34940,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34175,6 +34980,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34212,8 +35018,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34290,6 +35096,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -34329,6 +35136,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -34368,6 +35176,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -34481,6 +35290,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -34519,6 +35329,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -34557,6 +35368,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -34638,6 +35450,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -34678,8 +35491,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -34721,6 +35534,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34763,8 +35577,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34808,6 +35622,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34850,8 +35665,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34895,6 +35710,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34937,8 +35753,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -34982,6 +35798,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -35024,8 +35841,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -35080,6 +35897,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawPixels")] + [CLSCompliant(false)] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] pixels) where T4 : struct { throw new NotImplementedException(); } @@ -35108,6 +35926,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawPixels")] + [CLSCompliant(false)] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] pixels) where T4 : struct { throw new NotImplementedException(); } @@ -35136,6 +35955,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawPixels")] + [CLSCompliant(false)] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] pixels) where T4 : struct { throw new NotImplementedException(); } @@ -35203,6 +36023,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v1.2] @@ -35240,6 +36061,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35279,6 +36101,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35318,6 +36141,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35357,6 +36181,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -35395,8 +36220,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v1.2] @@ -35433,8 +36258,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35473,8 +36298,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35513,8 +36338,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35553,8 +36378,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -35593,6 +36418,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v1.2] @@ -35629,6 +36455,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35667,6 +36494,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35705,6 +36533,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35743,6 +36572,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -35780,8 +36610,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v1.2] @@ -35817,8 +36647,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35856,8 +36686,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35895,8 +36725,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -35934,8 +36764,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -35980,6 +36810,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -36022,6 +36853,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36066,6 +36898,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36110,6 +36943,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36154,6 +36988,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36197,8 +37032,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -36240,8 +37075,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36285,8 +37120,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36330,8 +37165,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36375,8 +37210,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36420,6 +37255,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -36461,6 +37297,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36504,6 +37341,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36547,6 +37385,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36590,6 +37429,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36632,8 +37472,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -36674,8 +37514,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36718,8 +37558,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36762,8 +37602,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36806,8 +37646,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -36826,6 +37666,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] + [CLSCompliant(false)] public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -36841,8 +37682,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a transform feedback object from which to retrieve a primitive count. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] + [CLSCompliant(false)] public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_transform_feedback_instanced|VERSION_4_2] @@ -36864,6 +37705,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackInstanced")] + [CLSCompliant(false)] public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_transform_feedback_instanced|VERSION_4_2] @@ -36884,8 +37726,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the geometry to render. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackInstanced")] + [CLSCompliant(false)] public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -36907,6 +37749,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] + [CLSCompliant(false)] public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 stream) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -36927,8 +37770,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the index of the transform feedback stream from which to retrieve a primitive count. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] + [CLSCompliant(false)] public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, UInt32 stream) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_transform_feedback_instanced|VERSION_4_2] @@ -36955,6 +37798,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackStreamInstanced")] + [CLSCompliant(false)] public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 stream, Int32 instancecount) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_transform_feedback_instanced|VERSION_4_2] @@ -36980,8 +37824,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the geometry to render. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackStreamInstanced")] + [CLSCompliant(false)] public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, UInt32 stream, Int32 instancecount) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37025,6 +37869,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glEdgeFlagPointer")] + [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute] T1[] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -37043,6 +37888,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glEdgeFlagPointer")] + [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute] T1[,] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -37061,6 +37907,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glEdgeFlagPointer")] + [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute] T1[,,] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -37092,6 +37939,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")] + [CLSCompliant(false)] public static void EdgeFlag(bool[] flag) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37102,8 +37950,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the current edge flag value, either GL_TRUE or GL_FALSE. The initial value is GL_TRUE. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")] + [CLSCompliant(false)] public static unsafe void EdgeFlag(bool* flag) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -37147,6 +37995,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEnablei")] + [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -37162,8 +38011,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the index of the switch to disable (for glEnablei and glDisablei only). /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEnablei")] + [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37175,6 +38024,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37185,8 +38035,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the index of the generic vertex attribute to be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37207,11 +38057,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glEndQueryIndexed")] + [CLSCompliant(false)] public static void EndQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glEndQueryIndexed")] + [CLSCompliant(false)] public static void EndQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -37247,8 +38098,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap2 command. This argument is not present in a glEvalCoord1 command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1dv")] + [CLSCompliant(false)] public static unsafe void EvalCoord1(Double* u) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37280,8 +38131,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap2 command. This argument is not present in a glEvalCoord1 command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1fv")] + [CLSCompliant(false)] public static unsafe void EvalCoord1(Single* u) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37314,6 +38165,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2dv")] + [CLSCompliant(false)] public static void EvalCoord2(Double[] u) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37330,6 +38182,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2dv")] + [CLSCompliant(false)] public static void EvalCoord2(ref Double u) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37345,8 +38198,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap2 command. This argument is not present in a glEvalCoord1 command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2dv")] + [CLSCompliant(false)] public static unsafe void EvalCoord2(Double* u) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37379,6 +38232,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2fv")] + [CLSCompliant(false)] public static void EvalCoord2(Single[] u) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37395,6 +38249,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2fv")] + [CLSCompliant(false)] public static void EvalCoord2(ref Single u) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37410,8 +38265,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap2 command. This argument is not present in a glEvalCoord1 command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2fv")] + [CLSCompliant(false)] public static unsafe void EvalCoord2(Single* u) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37497,6 +38352,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFeedbackBuffer")] + [CLSCompliant(false)] public static void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute] Single[] buffer) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37518,6 +38374,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFeedbackBuffer")] + [CLSCompliant(false)] public static void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute] out Single buffer) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37538,8 +38395,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the feedback data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFeedbackBuffer")] + [CLSCompliant(false)] public static unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute] Single* buffer) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -37557,24 +38414,6 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use SyncCondition overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] - public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, Int32 flags) { throw new NotImplementedException(); } - - /// [requires: v3.2 and ARB_sync|VERSION_3_2] - /// Create a new sync object and insert it into the GL command stream - /// - /// - /// - /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be GL_SYNC_GPU_COMMANDS_COMPLETE. - /// - /// - /// - /// - /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero. flags is a placeholder for anticipated future extensions of fence sync object capabilities. - /// - /// - [Obsolete("Use SyncCondition overload instead")] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, UInt32 flags) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -37645,8 +38484,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoorddv")] + [CLSCompliant(false)] public static unsafe void FogCoord(Double* coord) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -37668,8 +38507,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordfv")] + [CLSCompliant(false)] public static unsafe void FogCoord(Single* coord) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -37712,6 +38551,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordPointer")] + [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -37735,6 +38575,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordPointer")] + [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -37758,6 +38599,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordPointer")] + [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -37815,6 +38657,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogfv")] + [CLSCompliant(false)] public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37830,8 +38673,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogfv")] + [CLSCompliant(false)] public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37864,6 +38707,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogiv")] + [CLSCompliant(false)] public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -37879,8 +38723,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogiv")] + [CLSCompliant(false)] public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_framebuffer_no_attachments|VERSION_4_3] @@ -37928,6 +38772,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -37953,8 +38798,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -37986,6 +38831,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glFramebufferTexture")] + [CLSCompliant(false)] public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -38016,35 +38862,38 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mipmap level of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glFramebufferTexture")] + [CLSCompliant(false)] public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture1D")] + [CLSCompliant(false)] public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture1D")] + [CLSCompliant(false)] public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture3D")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture3D")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38076,6 +38925,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38106,8 +38956,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the layer of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -38156,6 +39006,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static Int32 GenBuffer() { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38172,6 +39023,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38188,6 +39040,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38203,8 +39056,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38220,8 +39073,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38237,8 +39090,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38254,8 +39107,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38283,6 +39136,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static Int32 GenFramebuffer() { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38299,6 +39153,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38315,6 +39170,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38330,8 +39186,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38347,8 +39203,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38364,8 +39220,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38381,8 +39237,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -38410,6 +39266,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -38426,6 +39283,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -38442,6 +39300,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -38457,8 +39316,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -38474,8 +39333,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -38491,8 +39350,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -38508,8 +39367,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38526,6 +39385,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static Int32 GenQuery() { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38542,6 +39402,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38558,6 +39419,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38573,8 +39435,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38590,8 +39452,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38607,8 +39469,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -38624,8 +39486,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38642,6 +39504,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38658,6 +39521,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38674,6 +39538,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38689,8 +39554,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38706,8 +39571,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38723,8 +39588,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -38740,8 +39605,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -38758,6 +39623,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static Int32 GenSampler() { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -38774,6 +39640,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] Int32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -38790,6 +39657,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] out Int32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -38805,8 +39673,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static unsafe void GenSamplers(Int32 count, [OutAttribute] Int32* samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -38822,8 +39690,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] UInt32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -38839,8 +39707,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] out UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -38856,8 +39724,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static unsafe void GenSamplers(Int32 count, [OutAttribute] UInt32* samplers) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -38874,6 +39742,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static Int32 GenTexture() { throw new NotImplementedException(); } /// [requires: v1.1] @@ -38890,6 +39759,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -38906,6 +39776,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -38921,8 +39792,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -38938,8 +39809,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -38955,8 +39826,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -38972,8 +39843,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -38990,6 +39861,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -39006,6 +39878,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -39022,6 +39895,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -39037,8 +39911,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -39054,8 +39928,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -39071,8 +39945,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -39088,8 +39962,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -39106,6 +39980,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static Int32 GenVertexArray() { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -39122,6 +39997,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -39138,6 +40014,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -39153,8 +40030,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -39170,8 +40047,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -39187,8 +40064,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -39204,8 +40081,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -39232,6 +40109,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -39258,6 +40136,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -39283,8 +40162,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static unsafe void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -39310,8 +40189,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -39337,8 +40216,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -39364,8 +40243,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static unsafe void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -39407,6 +40286,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -39447,8 +40327,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -39489,8 +40369,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -39531,8 +40411,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39569,6 +40449,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] + [CLSCompliant(false)] public static void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39604,8 +40485,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array into which the name of the shader subroutine uniform will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39641,8 +40522,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array into which the name of the shader subroutine uniform will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] + [CLSCompliant(false)] public static void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39678,8 +40559,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array into which the name of the shader subroutine uniform will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39711,6 +40592,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39742,6 +40624,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39772,8 +40655,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39804,8 +40687,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39836,8 +40719,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39868,8 +40751,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39906,6 +40789,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39941,8 +40825,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a buffer that will receive the name of the specified shader subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -39978,8 +40862,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a buffer that will receive the name of the specified shader subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -40015,8 +40899,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a buffer that will receive the name of the specified shader subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40058,6 +40942,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40098,8 +40983,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40140,8 +41025,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40182,8 +41067,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40210,6 +41095,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40236,6 +41122,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40261,8 +41148,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40288,8 +41175,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40315,8 +41202,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40342,8 +41229,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40375,6 +41262,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40405,8 +41293,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array of characters to receive the name of the uniform block at uniformBlockIndex. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40437,8 +41325,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array of characters to receive the name of the uniform block at uniformBlockIndex. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40469,8 +41357,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array of characters to receive the name of the uniform block at uniformBlockIndex. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40502,6 +41390,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] + [CLSCompliant(false)] public static void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40532,8 +41421,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a buffer into which the GL will place the name of the active uniform at uniformIndex within program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40564,8 +41453,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a buffer into which the GL will place the name of the active uniform at uniformIndex within program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] + [CLSCompliant(false)] public static void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40596,8 +41485,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a buffer into which the GL will place the name of the active uniform at uniformIndex within program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40629,6 +41518,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40660,6 +41550,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, ref Int32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40690,8 +41581,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40722,8 +41613,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, UInt32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40754,8 +41645,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -40786,8 +41677,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, UInt32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40814,6 +41705,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] Int32[] shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40840,6 +41732,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out Int32 shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40865,8 +41758,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32* shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40892,8 +41785,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] UInt32[] shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40919,8 +41812,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out UInt32 shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40946,8 +41839,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32* shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40964,6 +41857,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40979,53 +41873,58 @@ namespace OpenTK.Graphics.OpenGL /// Points to a null terminated string containing the name of the attribute variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static bool GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -41047,6 +41946,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -41068,6 +41968,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -41088,8 +41989,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -41111,6 +42012,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -41132,6 +42034,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -41152,8 +42055,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -41196,6 +42099,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } @@ -41219,6 +42123,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -41242,6 +42147,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -41319,6 +42225,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] + [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -41347,6 +42254,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] + [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -41375,6 +42283,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] + [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -41421,6 +42330,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetClipPlane")] + [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute] Double[] equation) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -41437,6 +42347,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetClipPlane")] + [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute] out Double equation) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -41452,8 +42363,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetClipPlane")] + [CLSCompliant(false)] public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute] Double* equation) { throw new NotImplementedException(); } /// @@ -41506,6 +42417,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] table) where T3 : struct { throw new NotImplementedException(); } @@ -41534,6 +42446,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] table) where T3 : struct { throw new NotImplementedException(); } @@ -41562,6 +42475,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] table) where T3 : struct { throw new NotImplementedException(); } @@ -41613,6 +42527,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// @@ -41634,6 +42549,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// @@ -41654,8 +42570,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameter will be stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// @@ -41677,6 +42593,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// @@ -41698,6 +42615,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// @@ -41718,8 +42636,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameter will be stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.3] @@ -41762,6 +42680,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] + [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute] T2[] img) where T2 : struct { throw new NotImplementedException(); } @@ -41785,6 +42704,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] + [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute] T2[,] img) where T2 : struct { throw new NotImplementedException(); } @@ -41808,6 +42728,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] + [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute] T2[,,] img) where T2 : struct { throw new NotImplementedException(); } @@ -41885,6 +42806,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] image) where T3 : struct { throw new NotImplementedException(); } @@ -41913,6 +42835,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] image) where T3 : struct { throw new NotImplementedException(); } @@ -41941,6 +42864,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] image) where T3 : struct { throw new NotImplementedException(); } @@ -41992,6 +42916,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// @@ -42013,6 +42938,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// @@ -42033,8 +42959,8 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the parameters to be retrieved. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// @@ -42056,6 +42982,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// @@ -42077,6 +43004,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// @@ -42097,8 +43025,8 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the parameters to be retrieved. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -42145,6 +43073,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -42191,6 +43120,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -42236,8 +43166,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -42283,8 +43213,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -42330,8 +43260,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -42377,53 +43307,58 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Double[] data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] out Double data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Double* data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Double[] data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] out Double data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Double* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] + [CLSCompliant(false)] public static Double GetDouble(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Double[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] out Double data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] + [CLSCompliant(false)] public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Double* data) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -42434,47 +43369,52 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static Single GetFloat(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_blend_func_extended|VERSION_3_3] @@ -42491,6 +43431,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glGetFragDataIndex")] + [CLSCompliant(false)] public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_blend_func_extended|VERSION_3_3] @@ -42506,8 +43447,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of the user-defined varying out variable whose index to query /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glGetFragDataIndex")] + [CLSCompliant(false)] public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -42524,6 +43465,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] + [CLSCompliant(false)] public static Int32 GetFragDataLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -42539,8 +43481,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of the user-defined varying out variable whose binding to query /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] + [CLSCompliant(false)] public static Int32 GetFragDataLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -42567,6 +43509,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -42593,6 +43536,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -42618,8 +43562,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable receive the value of pname for attachment. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_framebuffer_no_attachments|VERSION_4_3] @@ -42641,6 +43585,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_framebuffer_no_attachments|VERSION_4_3] @@ -42662,6 +43607,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_framebuffer_no_attachments|VERSION_4_3] @@ -42682,8 +43628,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a variable to receive the value of the parameter named pname. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// @@ -42746,6 +43692,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] values) where T4 : struct { throw new NotImplementedException(); } @@ -42779,6 +43726,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] values) where T4 : struct { throw new NotImplementedException(); } @@ -42812,6 +43760,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] values) where T4 : struct { throw new NotImplementedException(); } @@ -42868,6 +43817,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// @@ -42889,6 +43839,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// @@ -42909,8 +43860,8 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the returned values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// @@ -42932,6 +43883,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// @@ -42953,6 +43905,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// @@ -42973,166 +43926,183 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the returned values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.2] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.2] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.2] [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.2] [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.2] [Obsolete("Use GetIndexedPName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.2] [Obsolete("Use GetIndexedPName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.2] [Obsolete("Use GetIndexedPName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.2] [Obsolete("Use GetIndexedPName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [Obsolete("Use GetPName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [Obsolete("Use GetPName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [Obsolete("Use GetPName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [Obsolete("Use GetPName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static Int32 GetInteger(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_internalformat_query2|VERSION_4_3] [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_internalformat_query2|VERSION_4_3] [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_internalformat_query2|VERSION_4_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] + [CLSCompliant(false)] public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_internalformat_query|VERSION_4_2] @@ -43164,6 +44134,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_internalformat_query|VERSION_4_2] @@ -43195,6 +44166,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_internalformat_query|VERSION_4_2] @@ -43225,8 +44197,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43248,6 +44220,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] + [CLSCompliant(false)] public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43269,6 +44242,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] + [CLSCompliant(false)] public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43289,8 +44263,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] + [CLSCompliant(false)] public static unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43312,6 +44286,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightiv")] + [CLSCompliant(false)] public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43333,6 +44308,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightiv")] + [CLSCompliant(false)] public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43353,8 +44329,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightiv")] + [CLSCompliant(false)] public static unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43376,6 +44352,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapdv")] + [CLSCompliant(false)] public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43397,6 +44374,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapdv")] + [CLSCompliant(false)] public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] out Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43417,8 +44395,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapdv")] + [CLSCompliant(false)] public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43440,6 +44418,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapfv")] + [CLSCompliant(false)] public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43461,6 +44440,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapfv")] + [CLSCompliant(false)] public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] out Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43481,8 +44461,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapfv")] + [CLSCompliant(false)] public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43504,6 +44484,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapiv")] + [CLSCompliant(false)] public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43525,6 +44506,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapiv")] + [CLSCompliant(false)] public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] out Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43545,8 +44527,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapiv")] + [CLSCompliant(false)] public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43568,6 +44550,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] + [CLSCompliant(false)] public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43589,6 +44572,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] + [CLSCompliant(false)] public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43609,8 +44593,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] + [CLSCompliant(false)] public static unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43632,6 +44616,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialiv")] + [CLSCompliant(false)] public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43653,6 +44638,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialiv")] + [CLSCompliant(false)] public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -43673,8 +44659,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialiv")] + [CLSCompliant(false)] public static unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// @@ -43737,6 +44723,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] values) where T4 : struct { throw new NotImplementedException(); } @@ -43770,6 +44757,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] values) where T4 : struct { throw new NotImplementedException(); } @@ -43803,6 +44791,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] values) where T4 : struct { throw new NotImplementedException(); } @@ -43859,6 +44848,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// @@ -43880,6 +44870,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// @@ -43900,8 +44891,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the retrieved parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] + [CLSCompliant(false)] public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// @@ -43923,6 +44914,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// @@ -43944,6 +44936,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// @@ -43964,8 +44957,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the retrieved parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] + [CLSCompliant(false)] public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -43987,6 +44980,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute] Single[] val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -44008,6 +45002,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute] out Single val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -44028,8 +45023,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute] Single* val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -44050,8 +45045,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute] Single[] val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -44072,8 +45067,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute] out Single val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -44094,8 +45089,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute] Single* val) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44127,6 +45122,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44158,6 +45154,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44188,8 +45185,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44220,8 +45217,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44252,8 +45249,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44284,8 +45281,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44312,6 +45309,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44338,6 +45336,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44363,8 +45362,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -44391,6 +45390,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44419,6 +45419,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44446,8 +45447,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44476,6 +45477,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44504,6 +45506,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44531,8 +45534,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44561,6 +45564,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44589,6 +45593,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44616,8 +45621,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44646,6 +45651,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44674,6 +45680,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44701,8 +45708,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -44721,6 +45728,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapfv")] + [CLSCompliant(false)] public static Single GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44737,6 +45745,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapfv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] Single[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44753,6 +45762,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapfv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] out Single values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44768,8 +45778,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel map contents. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapfv")] + [CLSCompliant(false)] public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] Single* values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44786,6 +45796,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44802,6 +45813,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44817,8 +45829,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel map contents. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] + [CLSCompliant(false)] public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44834,8 +45846,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel map contents. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] UInt32[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44851,8 +45863,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel map contents. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] out UInt32 values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44868,8 +45880,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel map contents. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] + [CLSCompliant(false)] public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] UInt32* values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44886,6 +45898,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] Int16[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44902,6 +45915,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] out Int16 values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44917,8 +45931,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel map contents. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] + [CLSCompliant(false)] public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] Int16* values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44934,8 +45948,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel map contents. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] UInt16[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44951,8 +45965,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel map contents. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] + [CLSCompliant(false)] public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] out UInt16 values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -44968,21 +45982,23 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel map contents. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] + [CLSCompliant(false)] public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] UInt16* values) { throw new NotImplementedException(); } /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] + [CLSCompliant(false)] public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute] int[] values) { throw new NotImplementedException(); } /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] + [CLSCompliant(false)] public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute] out int values) { throw new NotImplementedException(); } /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] + [CLSCompliant(false)] public static unsafe void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute] int* values) { throw new NotImplementedException(); } /// [requires: v1.1 and KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] @@ -45015,6 +46031,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3", Version = "1.1", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } @@ -45033,6 +46050,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3", Version = "1.1", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -45051,6 +46069,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3", Version = "1.1", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -45082,6 +46101,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] + [CLSCompliant(false)] public static Byte GetPolygonStipple() { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -45093,6 +46113,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] + [CLSCompliant(false)] public static void GetPolygonStipple([OutAttribute] Byte[] mask) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -45104,6 +46125,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] + [CLSCompliant(false)] public static void GetPolygonStipple([OutAttribute] out Byte mask) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -45114,8 +46136,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the stipple pattern. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] + [CLSCompliant(false)] public static unsafe void GetPolygonStipple([OutAttribute] Byte* mask) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -45147,6 +46169,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -45178,6 +46201,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45211,6 +46235,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45244,6 +46269,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45277,6 +46303,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -45309,8 +46336,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -45341,8 +46368,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45375,8 +46402,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45409,8 +46436,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45443,8 +46470,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -45477,8 +46504,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -45509,8 +46536,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45543,8 +46570,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45577,8 +46604,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45611,8 +46638,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -45645,8 +46672,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -45677,8 +46704,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45711,8 +46738,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45745,8 +46772,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -45779,8 +46806,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -45809,6 +46836,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45834,8 +46862,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45861,8 +46889,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45888,8 +46916,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -45916,6 +46944,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -45942,6 +46971,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -45967,8 +46997,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a variable to retrieve the value of pname for the program interface. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -45994,8 +47024,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a variable to retrieve the value of pname for the program interface. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46021,8 +47051,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a variable to retrieve the value of pname for the program interface. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46048,8 +47078,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a variable to retrieve the value of pname for the program interface. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46071,6 +47101,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46092,6 +47123,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46112,8 +47144,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46136,6 +47168,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46158,6 +47191,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46179,8 +47213,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use GetProgramParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46201,8 +47235,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46223,8 +47257,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46245,8 +47279,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46268,8 +47302,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use GetProgramParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46291,8 +47325,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use GetProgramParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46314,8 +47348,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use GetProgramParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46342,6 +47376,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46367,8 +47402,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46394,8 +47429,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46421,8 +47456,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46444,6 +47479,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46465,6 +47501,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46485,8 +47522,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46507,8 +47544,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46529,8 +47566,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -46551,8 +47588,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46574,6 +47611,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceIndex")] + [CLSCompliant(false)] public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46594,8 +47632,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of the resource to query the index of. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceIndex")] + [CLSCompliant(false)] public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46612,6 +47650,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46628,6 +47667,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46643,8 +47683,8 @@ namespace OpenTK.Graphics.OpenGL /// A token identifying the interface within program containing the resource named name. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46660,8 +47700,8 @@ namespace OpenTK.Graphics.OpenGL /// A token identifying the interface within program containing the resource named name. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46677,8 +47717,8 @@ namespace OpenTK.Graphics.OpenGL /// A token identifying the interface within program containing the resource named name. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46694,8 +47734,8 @@ namespace OpenTK.Graphics.OpenGL /// A token identifying the interface within program containing the resource named name. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46717,6 +47757,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocation")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46737,8 +47778,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of the resource to query the location of. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocation")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46760,6 +47801,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocationIndex")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46780,8 +47822,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of the resource to query the location of. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocationIndex")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46818,6 +47860,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46854,6 +47897,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46889,8 +47933,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a character array into which will be written the name of the resource. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46926,8 +47970,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a character array into which will be written the name of the resource. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -46963,8 +48007,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a character array into which will be written the name of the resource. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -47000,8 +48044,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a character array into which will be written the name of the resource. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -47028,6 +48072,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] + [CLSCompliant(false)] public static void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -47053,8 +48098,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] + [CLSCompliant(false)] public static unsafe void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -47080,8 +48125,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] + [CLSCompliant(false)] public static void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -47107,8 +48152,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] + [CLSCompliant(false)] public static unsafe void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -47135,6 +48180,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -47161,6 +48207,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -47186,8 +48233,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -47213,8 +48260,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -47240,8 +48287,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -47267,8 +48314,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47290,6 +48337,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47311,6 +48359,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47331,8 +48380,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -47354,6 +48403,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -47375,6 +48425,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -47395,8 +48446,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -47417,8 +48468,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -47439,8 +48490,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -47461,8 +48512,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47484,6 +48535,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47505,6 +48557,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47525,8 +48578,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47547,8 +48600,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47569,8 +48622,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47591,8 +48644,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -47613,8 +48666,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -47635,8 +48688,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -47657,8 +48710,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47679,8 +48732,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47701,8 +48754,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -47723,8 +48776,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -47746,6 +48799,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -47767,6 +48821,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -47787,8 +48842,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the value of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -47810,6 +48865,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -47831,6 +48887,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -47851,8 +48908,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -47873,8 +48930,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -47895,8 +48952,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -47917,51 +48974,53 @@ namespace OpenTK.Graphics.OpenGL /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -47983,6 +49042,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -48004,6 +49064,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -48024,8 +49085,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -48046,8 +49107,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -48068,8 +49129,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -48090,8 +49151,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// @@ -48164,6 +49225,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] row, [InAttribute, OutAttribute] T4[] column, [InAttribute, OutAttribute] T5[] span) where T3 : struct where T4 : struct @@ -48204,6 +49266,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] row, [InAttribute, OutAttribute] T4[,] column, [InAttribute, OutAttribute] T5[,] span) where T3 : struct where T4 : struct @@ -48244,6 +49307,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct where T4 : struct @@ -48314,6 +49378,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48339,8 +49404,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48366,8 +49431,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48393,8 +49458,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48416,6 +49481,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48437,6 +49503,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48457,8 +49524,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48479,8 +49546,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48501,8 +49568,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48523,8 +49590,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -48551,6 +49618,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute] Int32[] range, [OutAttribute] Int32[] precision) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -48577,6 +49645,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute] out Int32 range, [OutAttribute] out Int32 precision) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -48602,8 +49671,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an integer into which the numeric precision of the implementation is written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute] Int32* range, [OutAttribute] Int32* precision) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48630,6 +49699,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48655,8 +49725,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48682,8 +49752,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -48709,8 +49779,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -48744,6 +49814,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use StringNameIndexed overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.OpenGL.StringName name, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -48760,8 +49831,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use StringNameIndexed overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.OpenGL.StringName name, UInt32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -48778,6 +49849,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.OpenGL.StringNameIndexed name, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -48793,8 +49865,8 @@ namespace OpenTK.Graphics.OpenGL /// For glGetStringi, specifies the index of the string to return. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.OpenGL.StringNameIndexed name, UInt32 index) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -48816,6 +49888,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineIndex")] + [CLSCompliant(false)] public static Int32 GetSubroutineIndex(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -48836,8 +49909,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the subroutine uniform whose index to query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineIndex")] + [CLSCompliant(false)] public static Int32 GetSubroutineIndex(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -48859,6 +49932,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineUniformLocation")] + [CLSCompliant(false)] public static Int32 GetSubroutineUniformLocation(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -48879,8 +49953,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the subroutine uniform whose index to query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineUniformLocation")] + [CLSCompliant(false)] public static Int32 GetSubroutineUniformLocation(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -48913,6 +49987,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use SyncParameterName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -48945,6 +50020,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use SyncParameterName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -48976,8 +50052,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use SyncParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -49009,6 +50085,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -49040,6 +50117,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -49070,8 +50148,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the values of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49093,6 +50171,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49114,6 +50193,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49134,8 +50214,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] + [CLSCompliant(false)] public static unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49157,6 +50237,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49178,6 +50259,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] + [CLSCompliant(false)] public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49198,8 +50280,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] + [CLSCompliant(false)] public static unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49221,6 +50303,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGendv")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49242,6 +50325,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGendv")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49262,8 +50346,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGendv")] + [CLSCompliant(false)] public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49285,6 +50369,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGenfv")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49306,6 +50391,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGenfv")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49326,8 +50412,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGenfv")] + [CLSCompliant(false)] public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49349,6 +50435,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGeniv")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49370,6 +50457,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGeniv")] + [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -49390,8 +50478,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGeniv")] + [CLSCompliant(false)] public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49454,6 +50542,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] + [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] pixels) where T4 : struct { throw new NotImplementedException(); } @@ -49487,6 +50576,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] + [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] pixels) where T4 : struct { throw new NotImplementedException(); } @@ -49520,6 +50610,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] + [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] pixels) where T4 : struct { throw new NotImplementedException(); } @@ -49581,6 +50672,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] + [CLSCompliant(false)] public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49607,6 +50699,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] + [CLSCompliant(false)] public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49632,8 +50725,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49660,6 +50753,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] + [CLSCompliant(false)] public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49686,6 +50780,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] + [CLSCompliant(false)] public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49711,8 +50806,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49734,6 +50829,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49755,6 +50851,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49775,36 +50872,38 @@ namespace OpenTK.Graphics.OpenGL /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] + [CLSCompliant(false)] public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] + [CLSCompliant(false)] public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49826,6 +50925,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49847,6 +50947,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -49867,8 +50968,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -49910,6 +51011,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -49951,6 +51053,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -49991,8 +51094,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -50033,8 +51136,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -50075,8 +51178,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -50117,8 +51220,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -50159,8 +51262,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -50201,8 +51304,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -50219,6 +51322,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformBlockIndex")] + [CLSCompliant(false)] public static Int32 GetUniformBlockIndex(Int32 program, String uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -50234,8 +51338,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address an array of characters to containing the name of the uniform block whose index to retrieve. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformBlockIndex")] + [CLSCompliant(false)] public static Int32 GetUniformBlockIndex(UInt32 program, String uniformBlockName) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -50257,6 +51361,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -50278,6 +51383,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -50298,8 +51404,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -50320,8 +51426,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -50342,8 +51448,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -50364,8 +51470,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50387,6 +51493,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50408,6 +51515,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50428,8 +51536,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50450,8 +51558,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50472,8 +51580,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50494,8 +51602,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -50522,6 +51630,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(Int32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] Int32[] uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -50548,6 +51657,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(Int32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] out Int32 uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -50573,8 +51683,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] Int32* uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -50600,8 +51710,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] UInt32[] uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -50627,8 +51737,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] out UInt32 uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -50654,8 +51764,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] UInt32* uniformIndices) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50677,6 +51787,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50698,6 +51809,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50718,8 +51830,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50740,8 +51852,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50762,8 +51874,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50784,8 +51896,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50802,6 +51914,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50817,8 +51930,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to a null terminated string containing the name of the uniform variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -50840,6 +51953,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] + [CLSCompliant(false)] public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -50860,8 +51974,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable to receive the value or values of the subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] + [CLSCompliant(false)] public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -50882,8 +51996,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable to receive the value or values of the subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] + [CLSCompliant(false)] public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -50904,8 +52018,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable to receive the value or values of the subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] + [CLSCompliant(false)] public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -50926,8 +52040,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -50948,8 +52062,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -50970,8 +52084,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -50993,6 +52107,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51014,6 +52129,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51034,8 +52150,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51056,8 +52172,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51078,8 +52194,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51100,8 +52216,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51123,6 +52239,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51144,6 +52261,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51164,8 +52282,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51186,8 +52304,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51208,8 +52326,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51230,37 +52348,38 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51282,6 +52401,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51303,6 +52423,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51323,8 +52444,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51345,8 +52466,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51367,8 +52488,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51389,36 +52510,38 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51440,6 +52563,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51461,6 +52585,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51484,6 +52609,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51507,6 +52633,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51530,6 +52657,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51552,8 +52680,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -51574,8 +52702,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51598,8 +52726,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51622,8 +52750,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51646,8 +52774,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51719,8 +52847,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexdv")] + [CLSCompliant(false)] public static unsafe void Index(Double* c) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -51748,8 +52876,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexfv")] + [CLSCompliant(false)] public static unsafe void Index(Single* c) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -51777,8 +52905,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexiv")] + [CLSCompliant(false)] public static unsafe void Index(Int32* c) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -51790,6 +52918,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexMask")] + [CLSCompliant(false)] public static void IndexMask(Int32 mask) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -51800,8 +52929,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a bit mask to enable and disable the writing of individual bits in the color index buffers. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexMask")] + [CLSCompliant(false)] public static void IndexMask(UInt32 mask) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -51844,6 +52973,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexPointer")] + [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51867,6 +52997,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexPointer")] + [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51890,6 +53021,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexPointer")] + [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -51942,8 +53074,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexsv")] + [CLSCompliant(false)] public static unsafe void Index(Int16* c) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -51971,8 +53103,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexubv")] + [CLSCompliant(false)] public static unsafe void Index(Byte* c) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52011,6 +53143,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glInterleavedArrays")] + [CLSCompliant(false)] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -52029,6 +53162,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glInterleavedArrays")] + [CLSCompliant(false)] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -52047,6 +53181,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glInterleavedArrays")] + [CLSCompliant(false)] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -52078,6 +53213,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] + [CLSCompliant(false)] public static void InvalidateBufferData(Int32 buffer) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52088,8 +53224,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of a buffer object whose data store to invalidate. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] + [CLSCompliant(false)] public static void InvalidateBufferData(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52111,6 +53247,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] + [CLSCompliant(false)] public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52131,8 +53268,8 @@ namespace OpenTK.Graphics.OpenGL /// The length of the range within the buffer's data store to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] + [CLSCompliant(false)] public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52154,6 +53291,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52175,6 +53313,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52195,8 +53334,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array identifying the attachments to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52238,6 +53377,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52279,6 +53419,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52319,8 +53460,8 @@ namespace OpenTK.Graphics.OpenGL /// The height of the region to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52337,6 +53478,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexImage")] + [CLSCompliant(false)] public static void InvalidateTexImage(Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52352,8 +53494,8 @@ namespace OpenTK.Graphics.OpenGL /// The level of detail of the texture object to invalidate. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexImage")] + [CLSCompliant(false)] public static void InvalidateTexImage(UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52400,6 +53542,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexSubImage")] + [CLSCompliant(false)] public static void InvalidateTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -52445,8 +53588,8 @@ namespace OpenTK.Graphics.OpenGL /// The depth of the region to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexSubImage")] + [CLSCompliant(false)] public static void InvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -52458,6 +53601,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -52468,8 +53612,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -52502,6 +53646,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glIsEnabledi")] + [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -52517,8 +53662,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the index of the capability. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glIsEnabledi")] + [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -52530,6 +53675,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] + [CLSCompliant(false)] public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -52540,8 +53686,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a framebuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] + [CLSCompliant(false)] public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52553,6 +53699,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIsList")] + [CLSCompliant(false)] public static bool IsList(Int32 list) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52563,8 +53710,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a potential display list name. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIsList")] + [CLSCompliant(false)] public static bool IsList(UInt32 list) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -52576,6 +53723,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] + [CLSCompliant(false)] public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -52586,8 +53734,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a potential program object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] + [CLSCompliant(false)] public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -52599,6 +53747,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glIsProgramPipeline")] + [CLSCompliant(false)] public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -52609,8 +53758,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a program pipeline object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glIsProgramPipeline")] + [CLSCompliant(false)] public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -52622,6 +53771,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] + [CLSCompliant(false)] public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -52632,8 +53782,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] + [CLSCompliant(false)] public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -52645,6 +53795,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] + [CLSCompliant(false)] public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -52655,8 +53806,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a renderbuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] + [CLSCompliant(false)] public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -52668,6 +53819,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] + [CLSCompliant(false)] public static bool IsSampler(Int32 sampler) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -52678,8 +53830,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a sampler object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] + [CLSCompliant(false)] public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -52691,6 +53843,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] + [CLSCompliant(false)] public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -52701,8 +53854,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a potential shader object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] + [CLSCompliant(false)] public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -52725,6 +53878,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -52735,8 +53889,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -52748,6 +53902,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] + [CLSCompliant(false)] public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -52758,8 +53913,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a transform feedback object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] + [CLSCompliant(false)] public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -52771,6 +53926,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] + [CLSCompliant(false)] public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -52781,8 +53937,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a vertex array object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] + [CLSCompliant(false)] public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52825,6 +53981,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightfv")] + [CLSCompliant(false)] public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52845,8 +54002,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter pname of light source light will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightfv")] + [CLSCompliant(false)] public static unsafe void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52889,6 +54046,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightiv")] + [CLSCompliant(false)] public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52909,8 +54067,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter pname of light source light will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightiv")] + [CLSCompliant(false)] public static unsafe void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52943,6 +54101,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] + [CLSCompliant(false)] public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52958,8 +54117,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that param will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] + [CLSCompliant(false)] public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -52992,6 +54151,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModeliv")] + [CLSCompliant(false)] public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53007,8 +54167,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that param will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModeliv")] + [CLSCompliant(false)] public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53025,6 +54185,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLineStipple")] + [CLSCompliant(false)] public static void LineStipple(Int32 factor, Int16 pattern) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53040,8 +54201,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a 16-bit integer whose bit pattern determines which fragments of a line will be drawn when the line is rasterized. Bit zero is used first; the default pattern is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLineStipple")] + [CLSCompliant(false)] public static void LineStipple(Int32 factor, UInt16 pattern) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -53064,6 +54225,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] + [CLSCompliant(false)] public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -53074,8 +54236,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the handle of the program object to be linked. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] + [CLSCompliant(false)] public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53087,6 +54249,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glListBase")] + [CLSCompliant(false)] public static void ListBase(Int32 @base) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53097,8 +54260,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an integer offset that will be added to glCallLists offsets to generate display-list names. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glListBase")] + [CLSCompliant(false)] public static void ListBase(UInt32 @base) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53116,6 +54279,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixd")] + [CLSCompliant(false)] public static void LoadMatrix(Double[] m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53127,6 +54291,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixd")] + [CLSCompliant(false)] public static void LoadMatrix(ref Double m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53137,8 +54302,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 column-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixd")] + [CLSCompliant(false)] public static unsafe void LoadMatrix(Double* m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53150,6 +54315,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] + [CLSCompliant(false)] public static void LoadMatrix(Single[] m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53161,6 +54327,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] + [CLSCompliant(false)] public static void LoadMatrix(ref Single m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53171,8 +54338,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 column-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] + [CLSCompliant(false)] public static unsafe void LoadMatrix(Single* m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53184,6 +54351,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadName")] + [CLSCompliant(false)] public static void LoadName(Int32 name) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53194,8 +54362,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a name that will replace the top value on the name stack. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadName")] + [CLSCompliant(false)] public static void LoadName(UInt32 name) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -53207,6 +54375,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")] + [CLSCompliant(false)] public static void LoadTransposeMatrix(Double[] m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -53218,6 +54387,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")] + [CLSCompliant(false)] public static void LoadTransposeMatrix(ref Double m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -53228,8 +54398,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 row-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")] + [CLSCompliant(false)] public static unsafe void LoadTransposeMatrix(Double* m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -53241,6 +54411,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")] + [CLSCompliant(false)] public static void LoadTransposeMatrix(Single[] m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -53252,6 +54423,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")] + [CLSCompliant(false)] public static void LoadTransposeMatrix(ref Single m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -53262,8 +54434,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 row-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")] + [CLSCompliant(false)] public static unsafe void LoadTransposeMatrix(Single* m) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -53306,6 +54478,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1d")] + [CLSCompliant(false)] public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double[] points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53337,6 +54510,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1d")] + [CLSCompliant(false)] public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, ref Double points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53367,8 +54541,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the array of control points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1d")] + [CLSCompliant(false)] public static unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double* points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53400,6 +54574,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1f")] + [CLSCompliant(false)] public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single[] points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53431,6 +54606,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1f")] + [CLSCompliant(false)] public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, ref Single points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53461,8 +54637,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the array of control points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1f")] + [CLSCompliant(false)] public static unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single* points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53509,6 +54685,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2d")] + [CLSCompliant(false)] public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double[] points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53555,6 +54732,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2d")] + [CLSCompliant(false)] public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, ref Double points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53600,8 +54778,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the array of control points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2d")] + [CLSCompliant(false)] public static unsafe void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53648,6 +54826,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2f")] + [CLSCompliant(false)] public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single[] points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53694,6 +54873,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2f")] + [CLSCompliant(false)] public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, ref Single points) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53739,8 +54919,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the array of control points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2f")] + [CLSCompliant(false)] public static unsafe void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -53929,6 +55109,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] + [CLSCompliant(false)] public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53949,8 +55130,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter GL_SHININESS will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] + [CLSCompliant(false)] public static unsafe void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -53993,6 +55174,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialiv")] + [CLSCompliant(false)] public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -54013,8 +55195,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter GL_SHININESS will be set to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialiv")] + [CLSCompliant(false)] public static unsafe void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -54096,6 +55278,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] first, Int32[] count, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -54123,6 +55306,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 first, ref Int32 count, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -54149,8 +55333,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* first, Int32* count, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -54177,6 +55361,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] first, Int32[] count, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -54203,6 +55388,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 first, ref Int32 count, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -54228,8 +55414,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the first and count /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* first, Int32* count, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_multi_draw_indirect|VERSION_4_3] @@ -54282,6 +55468,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct { throw new NotImplementedException(); } @@ -54310,6 +55497,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct { throw new NotImplementedException(); } @@ -54338,6 +55526,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct { throw new NotImplementedException(); } @@ -54400,6 +55589,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -54432,6 +55622,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54466,6 +55657,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54500,6 +55692,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54534,6 +55727,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54568,6 +55762,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -54600,6 +55795,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54634,6 +55830,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54668,6 +55865,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54702,6 +55900,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54735,8 +55934,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -54768,8 +55967,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54803,8 +56002,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54838,8 +56037,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54873,8 +56072,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54908,6 +56107,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -54939,6 +56139,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -54972,6 +56173,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55005,6 +56207,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55038,6 +56241,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55071,6 +56275,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -55102,6 +56307,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55135,6 +56341,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55168,6 +56375,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55201,6 +56409,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55233,8 +56442,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -55265,8 +56474,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55299,8 +56508,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55333,8 +56542,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55367,8 +56576,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -55408,6 +56617,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount, Int32[] basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -55445,6 +56655,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55484,6 +56695,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55523,6 +56735,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55562,6 +56775,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55601,6 +56815,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount, ref Int32 basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -55638,6 +56853,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55677,6 +56893,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55716,6 +56933,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55755,6 +56973,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55793,8 +57012,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount, Int32* basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -55831,8 +57050,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55871,8 +57090,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55911,8 +57130,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55951,8 +57170,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -55991,6 +57210,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount, Int32[] basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -56027,6 +57247,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56065,6 +57286,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56103,6 +57325,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56141,6 +57364,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56179,6 +57403,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount, ref Int32 basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -56215,6 +57440,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56253,6 +57479,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56291,6 +57518,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56329,6 +57557,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56366,8 +57595,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 drawcount, Int32* basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -56403,8 +57632,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56442,8 +57671,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56481,8 +57710,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56520,8 +57749,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -56586,6 +57815,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.All mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new NotImplementedException(); } @@ -56619,6 +57849,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.All mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new NotImplementedException(); } @@ -56652,6 +57883,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.All mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new NotImplementedException(); } @@ -56718,8 +57950,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1dv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56751,8 +57983,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1fv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56784,8 +58016,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1iv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56817,8 +58049,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1sv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56851,6 +58083,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56867,6 +58100,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56882,8 +58116,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56916,6 +58150,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56932,6 +58167,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56947,8 +58183,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56981,6 +58217,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -56997,6 +58234,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57012,8 +58250,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57046,6 +58284,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57062,6 +58301,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57077,8 +58317,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57111,6 +58351,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57127,6 +58368,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57142,8 +58384,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57176,6 +58418,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57192,6 +58435,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57207,8 +58451,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57241,6 +58485,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57257,6 +58502,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57272,8 +58518,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57306,6 +58552,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57322,6 +58569,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57337,8 +58585,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57371,6 +58619,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57387,6 +58636,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57402,8 +58652,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57436,6 +58686,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57452,6 +58703,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57467,8 +58719,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57501,6 +58753,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57517,6 +58770,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57532,8 +58786,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57566,6 +58820,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57582,6 +58837,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57597,84 +58853,88 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1ui")] + [CLSCompliant(false)] public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1ui")] + [CLSCompliant(false)] public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2ui")] + [CLSCompliant(false)] public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2ui")] + [CLSCompliant(false)] public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3ui")] + [CLSCompliant(false)] public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3ui")] + [CLSCompliant(false)] public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4ui")] + [CLSCompliant(false)] public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4ui")] + [CLSCompliant(false)] public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57686,6 +58946,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixd")] + [CLSCompliant(false)] public static void MultMatrix(Double[] m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57697,6 +58958,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixd")] + [CLSCompliant(false)] public static void MultMatrix(ref Double m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57707,8 +58969,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to 16 consecutive values that are used as the elements of a 4 times 4 column-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixd")] + [CLSCompliant(false)] public static unsafe void MultMatrix(Double* m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57720,6 +58982,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] + [CLSCompliant(false)] public static void MultMatrix(Single[] m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57731,6 +58994,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] + [CLSCompliant(false)] public static void MultMatrix(ref Single m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57741,8 +59005,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to 16 consecutive values that are used as the elements of a 4 times 4 column-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] + [CLSCompliant(false)] public static unsafe void MultMatrix(Single* m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57754,6 +59018,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")] + [CLSCompliant(false)] public static void MultTransposeMatrix(Double[] m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57765,6 +59030,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")] + [CLSCompliant(false)] public static void MultTransposeMatrix(ref Double m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57775,8 +59041,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to 16 consecutive values that are used as the elements of a 4 times 4 row-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")] + [CLSCompliant(false)] public static unsafe void MultTransposeMatrix(Double* m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57788,6 +59054,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")] + [CLSCompliant(false)] public static void MultTransposeMatrix(Single[] m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57799,6 +59066,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")] + [CLSCompliant(false)] public static void MultTransposeMatrix(ref Single m) { throw new NotImplementedException(); } /// [requires: v1.3][deprecated: v3.2] @@ -57809,8 +59077,8 @@ namespace OpenTK.Graphics.OpenGL /// Points to 16 consecutive values that are used as the elements of a 4 times 4 row-major matrix. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")] + [CLSCompliant(false)] public static unsafe void MultTransposeMatrix(Single* m) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57827,6 +59095,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNewList")] + [CLSCompliant(false)] public static void NewList(Int32 list, OpenTK.Graphics.OpenGL.ListMode mode) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57842,8 +59111,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the compilation mode, which can be GL_COMPILE or GL_COMPILE_AND_EXECUTE. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNewList")] + [CLSCompliant(false)] public static void NewList(UInt32 list, OpenTK.Graphics.OpenGL.ListMode mode) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57858,6 +59127,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3b")] + [CLSCompliant(false)] public static void Normal3(Byte nx, Byte ny, Byte nz) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57871,8 +59141,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3b")] + [CLSCompliant(false)] public static void Normal3(SByte nx, SByte ny, SByte nz) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57887,6 +59157,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] + [CLSCompliant(false)] public static void Normal3(Byte[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57901,6 +59172,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] + [CLSCompliant(false)] public static void Normal3(ref Byte v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57914,8 +59186,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] + [CLSCompliant(false)] public static unsafe void Normal3(Byte* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57929,8 +59201,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] + [CLSCompliant(false)] public static void Normal3(SByte[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57944,8 +59216,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] + [CLSCompliant(false)] public static void Normal3(ref SByte v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57959,8 +59231,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] + [CLSCompliant(false)] public static unsafe void Normal3(SByte* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -57989,6 +59261,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3dv")] + [CLSCompliant(false)] public static void Normal3(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58003,6 +59276,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3dv")] + [CLSCompliant(false)] public static void Normal3(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58016,8 +59290,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3dv")] + [CLSCompliant(false)] public static unsafe void Normal3(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58046,6 +59320,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3fv")] + [CLSCompliant(false)] public static void Normal3(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58060,6 +59335,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3fv")] + [CLSCompliant(false)] public static void Normal3(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58073,8 +59349,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3fv")] + [CLSCompliant(false)] public static unsafe void Normal3(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58103,6 +59379,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3iv")] + [CLSCompliant(false)] public static void Normal3(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58117,6 +59394,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3iv")] + [CLSCompliant(false)] public static void Normal3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58130,8 +59408,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3iv")] + [CLSCompliant(false)] public static unsafe void Normal3(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58160,6 +59438,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3sv")] + [CLSCompliant(false)] public static void Normal3(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58174,6 +59453,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3sv")] + [CLSCompliant(false)] public static void Normal3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58187,27 +59467,28 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3sv")] + [CLSCompliant(false)] public static unsafe void Normal3(Int16* v) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3ui")] + [CLSCompliant(false)] public static void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3ui")] + [CLSCompliant(false)] public static void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3uiv")] + [CLSCompliant(false)] public static unsafe void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3uiv")] + [CLSCompliant(false)] public static unsafe void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -58250,6 +59531,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glNormalPointer")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -58273,6 +59555,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glNormalPointer")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -58296,6 +59579,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glNormalPointer")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -58347,6 +59631,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -58372,8 +59657,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string containing the label to assign to the object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -58416,6 +59701,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -58439,6 +59725,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -58462,6 +59749,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -58540,6 +59828,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] + [CLSCompliant(false)] public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, Single[] values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_tessellation_shader|VERSION_4_0] @@ -58561,6 +59850,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] + [CLSCompliant(false)] public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, ref Single values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_tessellation_shader|VERSION_4_0] @@ -58581,8 +59871,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the new values for the parameter given by pname. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] + [CLSCompliant(false)] public static unsafe void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, Single* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_tessellation_shader|VERSION_4_0] @@ -58631,6 +59921,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapfv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Single[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58652,6 +59943,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapfv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref Single values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58672,8 +59964,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of mapsize values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapfv")] + [CLSCompliant(false)] public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Single* values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58695,6 +59987,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Int32[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58716,6 +60009,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref Int32 values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58736,8 +60030,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of mapsize values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] + [CLSCompliant(false)] public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Int32* values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58758,8 +60052,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of mapsize values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt32[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58780,8 +60074,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of mapsize values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref UInt32 values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58802,8 +60096,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of mapsize values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] + [CLSCompliant(false)] public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt32* values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58825,6 +60119,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Int16[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58846,6 +60141,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref Int16 values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58866,8 +60162,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of mapsize values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] + [CLSCompliant(false)] public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Int16* values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58888,8 +60184,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of mapsize values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt16[] values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58910,8 +60206,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of mapsize values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] + [CLSCompliant(false)] public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref UInt16 values) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -58932,21 +60228,23 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of mapsize values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] + [CLSCompliant(false)] public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt16* values) { throw new NotImplementedException(); } /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] + [CLSCompliant(false)] public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, int[] values) { throw new NotImplementedException(); } /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] + [CLSCompliant(false)] public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, ref int values) { throw new NotImplementedException(); } /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] + [CLSCompliant(false)] public static unsafe void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, int* values) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -59074,6 +60372,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] + [CLSCompliant(false)] public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -59094,8 +60393,8 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] + [CLSCompliant(false)] public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -59138,6 +60437,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] + [CLSCompliant(false)] public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -59158,8 +60458,8 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] + [CLSCompliant(false)] public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -59214,6 +60514,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonStipple")] + [CLSCompliant(false)] public static void PolygonStipple(Byte[] mask) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -59225,6 +60526,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonStipple")] + [CLSCompliant(false)] public static void PolygonStipple(ref Byte mask) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -59235,8 +60537,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to a 32 times 32 stipple pattern that will be unpacked from memory in the same way that glDrawPixels unpacks pixels. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonStipple")] + [CLSCompliant(false)] public static unsafe void PolygonStipple(Byte* mask) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -59270,6 +60572,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] + [CLSCompliant(false)] public static void PrimitiveRestartIndex(Int32 index) { throw new NotImplementedException(); } /// [requires: v3.1] @@ -59280,8 +60583,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value to be interpreted as the primitive restart index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] + [CLSCompliant(false)] public static void PrimitiveRestartIndex(UInt32 index) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -59303,6 +60606,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] + [CLSCompliant(false)] public static void PrioritizeTextures(Int32 n, Int32[] textures, Single[] priorities) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -59324,6 +60628,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] + [CLSCompliant(false)] public static void PrioritizeTextures(Int32 n, ref Int32 textures, ref Single priorities) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -59344,8 +60649,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array containing the texture priorities. A priority given in an element of priorities applies to the texture named by the corresponding element of textures. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] + [CLSCompliant(false)] public static unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single* priorities) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -59366,8 +60671,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array containing the texture priorities. A priority given in an element of priorities applies to the texture named by the corresponding element of textures. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] + [CLSCompliant(false)] public static void PrioritizeTextures(Int32 n, UInt32[] textures, Single[] priorities) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -59388,8 +60693,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array containing the texture priorities. A priority given in an element of priorities applies to the texture named by the corresponding element of textures. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] + [CLSCompliant(false)] public static void PrioritizeTextures(Int32 n, ref UInt32 textures, ref Single priorities) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -59410,8 +60715,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array containing the texture priorities. A priority given in an element of priorities applies to the texture named by the corresponding element of textures. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] + [CLSCompliant(false)] public static unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -59438,6 +60743,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -59464,6 +60770,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -59492,6 +60799,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -59520,6 +60828,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -59548,6 +60857,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -59575,8 +60885,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -59602,8 +60912,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -59631,8 +60941,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -59660,8 +60970,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -59689,8 +60999,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -59714,6 +61024,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -59736,6 +61047,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ProgramParameterName overload instead")] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.Version32 pname, Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -59756,8 +61068,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -59779,8 +61091,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ProgramParameterName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.Version32 pname, Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -59820,6 +61132,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1d")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Double v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -59858,8 +61171,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1d")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Double v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -59899,6 +61212,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -59937,8 +61251,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -59977,8 +61291,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60017,8 +61331,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60058,6 +61372,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1f")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60096,8 +61411,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1f")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60137,6 +61452,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60175,8 +61491,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60215,8 +61531,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60255,8 +61571,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60296,6 +61612,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1i")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60334,8 +61651,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1i")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60375,6 +61692,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60413,8 +61731,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60453,8 +61771,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60493,8 +61811,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60533,8 +61851,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1ui")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60573,8 +61891,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60613,8 +61931,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60654,6 +61972,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2d")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60692,8 +62011,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2d")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60733,6 +62052,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60772,6 +62092,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60810,8 +62131,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60850,8 +62171,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60890,8 +62211,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60930,8 +62251,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -60971,6 +62292,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2f")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61009,8 +62331,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2f")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61050,6 +62372,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61089,6 +62412,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61127,8 +62451,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61167,8 +62491,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61207,8 +62531,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61247,8 +62571,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61288,6 +62612,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2i")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61326,8 +62651,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2i")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61367,6 +62692,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61405,8 +62731,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61445,8 +62771,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61485,8 +62811,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61525,8 +62851,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2ui")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61565,8 +62891,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61605,8 +62931,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61645,8 +62971,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61686,6 +63012,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3d")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61724,8 +63051,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3d")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61765,6 +63092,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61804,6 +63132,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61842,8 +63171,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61882,8 +63211,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61922,8 +63251,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -61962,8 +63291,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62003,6 +63332,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3f")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62041,8 +63371,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3f")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62082,6 +63412,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62121,6 +63452,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62159,8 +63491,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62199,8 +63531,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62239,8 +63571,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62279,8 +63611,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62320,6 +63652,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3i")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62358,8 +63691,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3i")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62399,6 +63732,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62438,6 +63772,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62476,8 +63811,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62516,8 +63851,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62556,8 +63891,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62596,8 +63931,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62636,8 +63971,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3ui")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62676,8 +64011,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62716,8 +64051,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62756,8 +64091,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62797,6 +64132,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4d")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62835,8 +64171,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4d")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62876,6 +64212,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62915,6 +64252,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62953,8 +64291,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -62993,8 +64331,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63033,8 +64371,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63073,8 +64411,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63114,6 +64452,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4f")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63152,8 +64491,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4f")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63193,6 +64532,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63232,6 +64572,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63270,8 +64611,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63310,8 +64651,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63350,8 +64691,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63390,8 +64731,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63431,6 +64772,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4i")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63469,8 +64811,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4i")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63510,6 +64852,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63549,6 +64892,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63587,8 +64931,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63627,8 +64971,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63667,8 +65011,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63707,8 +65051,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63747,8 +65091,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4ui")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63787,8 +65131,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63827,8 +65171,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -63867,512 +65211,548 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_provoking_vertex|VERSION_3_2] @@ -64432,6 +65812,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSourceExternal source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -64457,8 +65838,8 @@ namespace OpenTK.Graphics.OpenGL /// The a string containing the message to be sent to the debug output stream. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSourceExternal source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64476,6 +65857,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPushName")] + [CLSCompliant(false)] public static void PushName(Int32 name) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64486,8 +65868,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a name that will be pushed onto the name stack. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPushName")] + [CLSCompliant(false)] public static void PushName(UInt32 name) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -64504,6 +65886,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glQueryCounter")] + [CLSCompliant(false)] public static void QueryCounter(Int32 id, OpenTK.Graphics.OpenGL.QueryCounterTarget target) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -64519,8 +65902,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the counter to query. target must be GL_TIMESTAMP. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glQueryCounter")] + [CLSCompliant(false)] public static void QueryCounter(UInt32 id, OpenTK.Graphics.OpenGL.QueryCounterTarget target) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64543,6 +65926,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2dv")] + [CLSCompliant(false)] public static void RasterPos2(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64554,6 +65938,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2dv")] + [CLSCompliant(false)] public static void RasterPos2(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64564,8 +65949,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2dv")] + [CLSCompliant(false)] public static unsafe void RasterPos2(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64588,6 +65973,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2fv")] + [CLSCompliant(false)] public static void RasterPos2(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64599,6 +65985,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2fv")] + [CLSCompliant(false)] public static void RasterPos2(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64609,8 +65996,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2fv")] + [CLSCompliant(false)] public static unsafe void RasterPos2(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64633,6 +66020,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2iv")] + [CLSCompliant(false)] public static void RasterPos2(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64644,6 +66032,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2iv")] + [CLSCompliant(false)] public static void RasterPos2(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64654,8 +66043,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2iv")] + [CLSCompliant(false)] public static unsafe void RasterPos2(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64678,6 +66067,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2sv")] + [CLSCompliant(false)] public static void RasterPos2(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64689,6 +66079,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2sv")] + [CLSCompliant(false)] public static void RasterPos2(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64699,8 +66090,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2sv")] + [CLSCompliant(false)] public static unsafe void RasterPos2(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64723,6 +66114,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3dv")] + [CLSCompliant(false)] public static void RasterPos3(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64734,6 +66126,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3dv")] + [CLSCompliant(false)] public static void RasterPos3(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64744,8 +66137,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3dv")] + [CLSCompliant(false)] public static unsafe void RasterPos3(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64768,6 +66161,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3fv")] + [CLSCompliant(false)] public static void RasterPos3(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64779,6 +66173,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3fv")] + [CLSCompliant(false)] public static void RasterPos3(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64789,8 +66184,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3fv")] + [CLSCompliant(false)] public static unsafe void RasterPos3(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64813,6 +66208,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3iv")] + [CLSCompliant(false)] public static void RasterPos3(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64824,6 +66220,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3iv")] + [CLSCompliant(false)] public static void RasterPos3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64834,8 +66231,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3iv")] + [CLSCompliant(false)] public static unsafe void RasterPos3(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64858,6 +66255,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3sv")] + [CLSCompliant(false)] public static void RasterPos3(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64869,6 +66267,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3sv")] + [CLSCompliant(false)] public static void RasterPos3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64879,8 +66278,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3sv")] + [CLSCompliant(false)] public static unsafe void RasterPos3(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64903,6 +66302,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4dv")] + [CLSCompliant(false)] public static void RasterPos4(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64914,6 +66314,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4dv")] + [CLSCompliant(false)] public static void RasterPos4(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64924,8 +66325,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4dv")] + [CLSCompliant(false)] public static unsafe void RasterPos4(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64948,6 +66349,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4fv")] + [CLSCompliant(false)] public static void RasterPos4(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64959,6 +66361,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4fv")] + [CLSCompliant(false)] public static void RasterPos4(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64969,8 +66372,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4fv")] + [CLSCompliant(false)] public static unsafe void RasterPos4(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -64993,6 +66396,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4iv")] + [CLSCompliant(false)] public static void RasterPos4(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65004,6 +66408,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4iv")] + [CLSCompliant(false)] public static void RasterPos4(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65014,8 +66419,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4iv")] + [CLSCompliant(false)] public static unsafe void RasterPos4(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65038,6 +66443,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4sv")] + [CLSCompliant(false)] public static void RasterPos4(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65049,6 +66455,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4sv")] + [CLSCompliant(false)] public static void RasterPos4(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65059,8 +66466,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4sv")] + [CLSCompliant(false)] public static unsafe void RasterPos4(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -65134,6 +66541,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -65167,6 +66575,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -65200,6 +66609,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -65267,6 +66677,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectdv")] + [CLSCompliant(false)] public static void Rect(Double[] v1, Double[] v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65283,6 +66694,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectdv")] + [CLSCompliant(false)] public static void Rect(ref Double v1, ref Double v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65298,8 +66710,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectdv")] + [CLSCompliant(false)] public static unsafe void Rect(Double* v1, Double* v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65332,6 +66744,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectfv")] + [CLSCompliant(false)] public static void Rect(Single[] v1, Single[] v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65348,6 +66761,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectfv")] + [CLSCompliant(false)] public static void Rect(ref Single v1, ref Single v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65363,8 +66777,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectfv")] + [CLSCompliant(false)] public static unsafe void Rect(Single* v1, Single* v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65397,6 +66811,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectiv")] + [CLSCompliant(false)] public static void Rect(Int32[] v1, Int32[] v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65413,6 +66828,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectiv")] + [CLSCompliant(false)] public static void Rect(ref Int32 v1, ref Int32 v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65428,8 +66844,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectiv")] + [CLSCompliant(false)] public static unsafe void Rect(Int32* v1, Int32* v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65450,6 +66866,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectsv")] + [CLSCompliant(false)] public static void Rect(Int16[] v1, Int16[] v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65466,6 +66883,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectsv")] + [CLSCompliant(false)] public static void Rect(ref Int16 v1, ref Int16 v2) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -65481,8 +66899,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectsv")] + [CLSCompliant(false)] public static unsafe void Rect(Int16* v1, Int16* v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -65649,6 +67067,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] + [CLSCompliant(false)] public static void SampleMask(Int32 index, Int32 mask) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -65664,8 +67083,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the mask sub-word. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] + [CLSCompliant(false)] public static void SampleMask(UInt32 index, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65692,6 +67111,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65717,8 +67137,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65745,6 +67165,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65770,8 +67191,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65797,8 +67218,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65824,8 +67245,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65852,6 +67273,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65877,51 +67299,53 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, ref Int32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, ref Int32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, UInt32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, ref UInt32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] + [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, UInt32* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65948,6 +67372,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -65973,8 +67398,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -66000,8 +67425,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -66027,8 +67452,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -66088,6 +67513,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static void ScissorArray(Int32 first, Int32 count, Int32[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66109,6 +67535,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static void ScissorArray(Int32 first, Int32 count, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66129,8 +67556,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static unsafe void ScissorArray(Int32 first, Int32 count, Int32* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66151,8 +67578,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static void ScissorArray(UInt32 first, Int32 count, Int32[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66173,8 +67600,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static void ScissorArray(UInt32 first, Int32 count, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66195,8 +67622,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static unsafe void ScissorArray(UInt32 first, Int32 count, Int32* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66223,6 +67650,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexed")] + [CLSCompliant(false)] public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66248,8 +67676,8 @@ namespace OpenTK.Graphics.OpenGL /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexed")] + [CLSCompliant(false)] public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66276,6 +67704,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static void ScissorIndexed(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66302,6 +67731,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static void ScissorIndexed(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66327,8 +67757,8 @@ namespace OpenTK.Graphics.OpenGL /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static unsafe void ScissorIndexed(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66354,8 +67784,8 @@ namespace OpenTK.Graphics.OpenGL /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static void ScissorIndexed(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66381,8 +67811,8 @@ namespace OpenTK.Graphics.OpenGL /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static void ScissorIndexed(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -66408,8 +67838,8 @@ namespace OpenTK.Graphics.OpenGL /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static unsafe void ScissorIndexed(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66420,8 +67850,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3b")] + [CLSCompliant(false)] public static void SecondaryColor3(SByte red, SByte green, SByte blue) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66432,8 +67862,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3bv")] + [CLSCompliant(false)] public static void SecondaryColor3(SByte[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66444,8 +67874,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3bv")] + [CLSCompliant(false)] public static void SecondaryColor3(ref SByte v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66456,8 +67886,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3bv")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(SByte* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66480,6 +67910,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3dv")] + [CLSCompliant(false)] public static void SecondaryColor3(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66491,6 +67922,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3dv")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66501,8 +67933,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3dv")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Double* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66525,6 +67957,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3fv")] + [CLSCompliant(false)] public static void SecondaryColor3(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66536,6 +67969,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3fv")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66546,8 +67980,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3fv")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Single* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66570,6 +68004,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3iv")] + [CLSCompliant(false)] public static void SecondaryColor3(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66581,6 +68016,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3iv")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66591,8 +68027,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3iv")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66615,6 +68051,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3sv")] + [CLSCompliant(false)] public static void SecondaryColor3(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66626,6 +68063,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3sv")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66636,8 +68074,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3sv")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66660,6 +68098,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")] + [CLSCompliant(false)] public static void SecondaryColor3(Byte[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66671,6 +68110,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Byte v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66681,8 +68121,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Byte* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66693,8 +68133,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ui")] + [CLSCompliant(false)] public static void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66705,8 +68145,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")] + [CLSCompliant(false)] public static void SecondaryColor3(UInt32[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66717,8 +68157,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")] + [CLSCompliant(false)] public static void SecondaryColor3(ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66729,8 +68169,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(UInt32* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66741,8 +68181,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3us")] + [CLSCompliant(false)] public static void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66753,8 +68193,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3usv")] + [CLSCompliant(false)] public static void SecondaryColor3(UInt16[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66765,8 +68205,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3usv")] + [CLSCompliant(false)] public static void SecondaryColor3(ref UInt16 v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66777,27 +68217,28 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3usv")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(UInt16* v) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3ui")] + [CLSCompliant(false)] public static void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3ui")] + [CLSCompliant(false)] public static void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3uiv")] + [CLSCompliant(false)] public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3uiv")] + [CLSCompliant(false)] public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* color) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -66850,6 +68291,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColorPointer")] + [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -66878,6 +68320,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColorPointer")] + [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -66906,6 +68349,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColorPointer")] + [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -66952,6 +68396,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] + [CLSCompliant(false)] public static void SelectBuffer(Int32 size, [OutAttribute] Int32[] buffer) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -66968,6 +68413,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] + [CLSCompliant(false)] public static void SelectBuffer(Int32 size, [OutAttribute] out Int32 buffer) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -66983,8 +68429,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the selection data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] + [CLSCompliant(false)] public static unsafe void SelectBuffer(Int32 size, [OutAttribute] Int32* buffer) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -67000,8 +68446,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the selection data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] + [CLSCompliant(false)] public static void SelectBuffer(Int32 size, [OutAttribute] UInt32[] buffer) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -67017,8 +68463,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the selection data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] + [CLSCompliant(false)] public static void SelectBuffer(Int32 size, [OutAttribute] out UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -67034,8 +68480,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the selection data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] + [CLSCompliant(false)] public static unsafe void SelectBuffer(Int32 size, [OutAttribute] UInt32* buffer) { throw new NotImplementedException(); } /// @@ -67128,6 +68574,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[] column) where T6 : struct where T7 : struct @@ -67177,6 +68624,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] row, [InAttribute, OutAttribute] T7[,] column) where T6 : struct where T7 : struct @@ -67226,6 +68674,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct where T7 : struct @@ -67320,6 +68769,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -67351,6 +68801,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67384,6 +68835,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67417,6 +68869,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67450,6 +68903,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67483,6 +68937,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -67514,6 +68969,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67547,6 +69003,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67580,6 +69037,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67613,6 +69071,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67645,8 +69104,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -67677,8 +69136,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67711,8 +69170,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67745,8 +69204,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67779,8 +69238,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67813,8 +69272,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -67845,8 +69304,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67879,8 +69338,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67913,8 +69372,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67947,8 +69406,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -67981,8 +69440,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -68013,8 +69472,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -68047,8 +69506,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -68081,8 +69540,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -68115,8 +69574,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -68149,8 +69608,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -68181,8 +69640,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -68215,8 +69674,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -68249,8 +69708,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -68283,8 +69742,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -68313,6 +69772,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shader, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -68339,6 +69799,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shader, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -68364,8 +69825,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static unsafe void ShaderSource(Int32 shader, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -68391,8 +69852,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shader, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -68418,8 +69879,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shader, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -68445,8 +69906,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static unsafe void ShaderSource(UInt32 shader, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_shader_storage_buffer_object|VERSION_4_3] @@ -68468,6 +69929,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_storage_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glShaderStorageBlockBinding")] + [CLSCompliant(false)] public static void ShaderStorageBlockBinding(Int32 program, Int32 storageBlockIndex, Int32 storageBlockBinding) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_shader_storage_buffer_object|VERSION_4_3] @@ -68488,8 +69950,8 @@ namespace OpenTK.Graphics.OpenGL /// The index storage block binding to associate with the specified storage block. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_storage_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glShaderStorageBlockBinding")] + [CLSCompliant(false)] public static void ShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -68511,6 +69973,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -68531,8 +69994,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -68559,6 +70022,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -68584,8 +70048,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -68597,6 +70061,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -68607,8 +70072,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -68625,6 +70090,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL.StencilFace face, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -68640,8 +70106,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL.StencilFace face, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -68710,6 +70176,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glTexBuffer")] + [CLSCompliant(false)] public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v3.1] @@ -68730,8 +70197,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glTexBuffer")] + [CLSCompliant(false)] public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_texture_buffer_range|VERSION_4_3] @@ -68763,6 +70230,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] + [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_texture_buffer_range|VERSION_4_3] @@ -68793,8 +70261,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the range of the buffer's data store to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] + [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68816,8 +70284,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1dv")] + [CLSCompliant(false)] public static unsafe void TexCoord1(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68839,8 +70307,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1fv")] + [CLSCompliant(false)] public static unsafe void TexCoord1(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68862,8 +70330,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1iv")] + [CLSCompliant(false)] public static unsafe void TexCoord1(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68885,8 +70353,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1sv")] + [CLSCompliant(false)] public static unsafe void TexCoord1(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68909,6 +70377,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2dv")] + [CLSCompliant(false)] public static void TexCoord2(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68920,6 +70389,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2dv")] + [CLSCompliant(false)] public static void TexCoord2(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68930,8 +70400,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2dv")] + [CLSCompliant(false)] public static unsafe void TexCoord2(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68954,6 +70424,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2fv")] + [CLSCompliant(false)] public static void TexCoord2(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68965,6 +70436,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2fv")] + [CLSCompliant(false)] public static void TexCoord2(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68975,8 +70447,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2fv")] + [CLSCompliant(false)] public static unsafe void TexCoord2(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -68999,6 +70471,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2iv")] + [CLSCompliant(false)] public static void TexCoord2(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69010,6 +70483,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2iv")] + [CLSCompliant(false)] public static void TexCoord2(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69020,8 +70494,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2iv")] + [CLSCompliant(false)] public static unsafe void TexCoord2(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69044,6 +70518,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2sv")] + [CLSCompliant(false)] public static void TexCoord2(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69055,6 +70530,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2sv")] + [CLSCompliant(false)] public static void TexCoord2(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69065,8 +70541,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2sv")] + [CLSCompliant(false)] public static unsafe void TexCoord2(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69089,6 +70565,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3dv")] + [CLSCompliant(false)] public static void TexCoord3(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69100,6 +70577,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3dv")] + [CLSCompliant(false)] public static void TexCoord3(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69110,8 +70588,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3dv")] + [CLSCompliant(false)] public static unsafe void TexCoord3(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69134,6 +70612,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3fv")] + [CLSCompliant(false)] public static void TexCoord3(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69145,6 +70624,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3fv")] + [CLSCompliant(false)] public static void TexCoord3(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69155,8 +70635,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3fv")] + [CLSCompliant(false)] public static unsafe void TexCoord3(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69179,6 +70659,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3iv")] + [CLSCompliant(false)] public static void TexCoord3(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69190,6 +70671,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3iv")] + [CLSCompliant(false)] public static void TexCoord3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69200,8 +70682,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3iv")] + [CLSCompliant(false)] public static unsafe void TexCoord3(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69224,6 +70706,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3sv")] + [CLSCompliant(false)] public static void TexCoord3(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69235,6 +70718,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3sv")] + [CLSCompliant(false)] public static void TexCoord3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69245,8 +70729,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3sv")] + [CLSCompliant(false)] public static unsafe void TexCoord3(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69269,6 +70753,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4dv")] + [CLSCompliant(false)] public static void TexCoord4(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69280,6 +70765,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4dv")] + [CLSCompliant(false)] public static void TexCoord4(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69290,8 +70776,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4dv")] + [CLSCompliant(false)] public static unsafe void TexCoord4(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69314,6 +70800,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4fv")] + [CLSCompliant(false)] public static void TexCoord4(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69325,6 +70812,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4fv")] + [CLSCompliant(false)] public static void TexCoord4(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69335,8 +70823,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4fv")] + [CLSCompliant(false)] public static unsafe void TexCoord4(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69359,6 +70847,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4iv")] + [CLSCompliant(false)] public static void TexCoord4(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69370,6 +70859,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4iv")] + [CLSCompliant(false)] public static void TexCoord4(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69380,8 +70870,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4iv")] + [CLSCompliant(false)] public static unsafe void TexCoord4(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69404,6 +70894,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4sv")] + [CLSCompliant(false)] public static void TexCoord4(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69415,6 +70906,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4sv")] + [CLSCompliant(false)] public static void TexCoord4(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69425,84 +70917,88 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4sv")] + [CLSCompliant(false)] public static unsafe void TexCoord4(Int16* v) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1ui")] + [CLSCompliant(false)] public static void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1ui")] + [CLSCompliant(false)] public static void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2ui")] + [CLSCompliant(false)] public static void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2ui")] + [CLSCompliant(false)] public static void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3ui")] + [CLSCompliant(false)] public static void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3ui")] + [CLSCompliant(false)] public static void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4ui")] + [CLSCompliant(false)] public static void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4ui")] + [CLSCompliant(false)] public static void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -69555,6 +71051,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexCoordPointer")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -69583,6 +71080,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexCoordPointer")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -69611,6 +71109,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexCoordPointer")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -69683,6 +71182,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] + [CLSCompliant(false)] public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69703,8 +71203,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] + [CLSCompliant(false)] public static unsafe void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69747,6 +71247,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] + [CLSCompliant(false)] public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69767,8 +71268,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] + [CLSCompliant(false)] public static unsafe void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69794,6 +71295,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGendv")] + [CLSCompliant(false)] public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69815,6 +71317,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGendv")] + [CLSCompliant(false)] public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, ref Double @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69835,8 +71338,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGendv")] + [CLSCompliant(false)] public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69879,6 +71382,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGenfv")] + [CLSCompliant(false)] public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69899,8 +71403,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGenfv")] + [CLSCompliant(false)] public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69943,6 +71447,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGeniv")] + [CLSCompliant(false)] public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -69963,8 +71468,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGeniv")] + [CLSCompliant(false)] public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -70057,6 +71562,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] + [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[] pixels) where T7 : struct { throw new NotImplementedException(); } @@ -70105,6 +71611,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] + [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[,] pixels) where T7 : struct { throw new NotImplementedException(); } @@ -70153,6 +71660,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] + [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[,,] pixels) where T7 : struct { throw new NotImplementedException(); } @@ -70305,6 +71813,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -70358,6 +71867,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -70411,6 +71921,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -70614,6 +72125,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -70672,6 +72184,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -70730,6 +72243,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -70884,6 +72398,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -70912,8 +72427,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -70947,30 +72462,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] + [CLSCompliant(false)] public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] + [CLSCompliant(false)] public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -71000,6 +72517,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -71028,8 +72546,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_texture_storage|VERSION_4_2] @@ -71282,6 +72800,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] + [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -71325,6 +72844,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] + [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -71368,6 +72888,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] + [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -71515,6 +73036,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -71568,6 +73090,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -71621,6 +73144,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -71798,6 +73322,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -71861,6 +73386,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -71924,6 +73450,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -72035,6 +73562,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_texture_view|VERSION_4_3", Version = "4.3", EntryPoint = "glTextureView")] + [CLSCompliant(false)] public static void TextureView(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 origtexture, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_texture_view|VERSION_4_3] @@ -72080,8 +73608,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of layers to include in the view. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_view|VERSION_4_3", Version = "4.3", EntryPoint = "glTextureView")] + [CLSCompliant(false)] public static void TextureView(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -72108,6 +73636,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(Int32 program, Int32 count, String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -72133,8 +73662,8 @@ namespace OpenTK.Graphics.OpenGL /// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(UInt32 program, Int32 count, String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -72225,6 +73754,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -72259,6 +73789,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -72292,8 +73823,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -72362,6 +73893,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -72396,6 +73928,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -72429,8 +73962,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -72499,6 +74032,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -72533,6 +74067,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -72566,8 +74101,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -72601,8 +74136,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -72636,8 +74171,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -72671,8 +74206,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -72706,8 +74241,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -72776,6 +74311,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -72810,6 +74346,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -72843,8 +74380,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -72913,6 +74450,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -72947,6 +74485,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -72980,8 +74519,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -73050,6 +74589,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -73083,8 +74623,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -73118,8 +74658,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2ui")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -73153,8 +74693,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -73188,8 +74728,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -73223,8 +74763,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -73293,6 +74833,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -73327,6 +74868,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -73360,8 +74902,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -73430,6 +74972,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -73464,6 +75007,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -73497,8 +75041,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -73567,6 +75111,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -73601,6 +75146,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -73634,8 +75180,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -73669,8 +75215,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3ui")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -73704,8 +75250,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -73739,8 +75285,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -73774,8 +75320,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -73844,6 +75390,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -73878,6 +75425,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -73911,8 +75459,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -73981,6 +75529,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -74015,6 +75564,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -74048,8 +75598,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -74118,6 +75668,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -74152,6 +75703,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -74185,8 +75737,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -74220,8 +75772,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4ui")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -74255,8 +75807,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -74290,8 +75842,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -74325,8 +75877,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -74348,6 +75900,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glUniformBlockBinding")] + [CLSCompliant(false)] public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -74368,242 +75921,278 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the binding point to which to bind the uniform block with index uniformBlockIndex within program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glUniformBlockBinding")] + [CLSCompliant(false)] public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -74625,6 +76214,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, Int32[] indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -74646,6 +76236,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, ref Int32 indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -74666,8 +76257,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array holding the indices to load into the shader subroutine variables. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, Int32* indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -74688,8 +76279,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array holding the indices to load into the shader subroutine variables. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, UInt32[] indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -74710,8 +76301,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array holding the indices to load into the shader subroutine variables. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, ref UInt32 indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -74732,8 +76323,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array holding the indices to load into the shader subroutine variables. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, UInt32* indices) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -74749,6 +76340,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] + [CLSCompliant(false)] public static void UseProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -74759,8 +76351,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the handle of the program object whose executables are to be used as part of current rendering state. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] + [CLSCompliant(false)] public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -74782,6 +76374,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glUseProgramStages")] + [CLSCompliant(false)] public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramStageMask stages, Int32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -74802,8 +76395,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object containing the shader executables to use in pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glUseProgramStages")] + [CLSCompliant(false)] public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramStageMask stages, UInt32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -74815,6 +76408,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] + [CLSCompliant(false)] public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -74825,8 +76419,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the handle of the program object to be validated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] + [CLSCompliant(false)] public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -74838,6 +76432,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glValidateProgramPipeline")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -74848,8 +76443,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a program pipeline object to validate. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glValidateProgramPipeline")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -74872,6 +76467,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2dv")] + [CLSCompliant(false)] public static void Vertex2(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -74883,6 +76479,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2dv")] + [CLSCompliant(false)] public static void Vertex2(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -74893,8 +76490,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2dv")] + [CLSCompliant(false)] public static unsafe void Vertex2(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -74917,6 +76514,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2fv")] + [CLSCompliant(false)] public static void Vertex2(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -74928,6 +76526,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2fv")] + [CLSCompliant(false)] public static void Vertex2(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -74938,8 +76537,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2fv")] + [CLSCompliant(false)] public static unsafe void Vertex2(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -74962,6 +76561,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2iv")] + [CLSCompliant(false)] public static void Vertex2(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -74973,6 +76573,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2iv")] + [CLSCompliant(false)] public static void Vertex2(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -74983,8 +76584,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2iv")] + [CLSCompliant(false)] public static unsafe void Vertex2(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75007,6 +76608,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2sv")] + [CLSCompliant(false)] public static void Vertex2(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75018,6 +76620,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2sv")] + [CLSCompliant(false)] public static void Vertex2(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75028,8 +76631,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2sv")] + [CLSCompliant(false)] public static unsafe void Vertex2(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75052,6 +76655,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3dv")] + [CLSCompliant(false)] public static void Vertex3(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75063,6 +76667,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3dv")] + [CLSCompliant(false)] public static void Vertex3(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75073,8 +76678,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3dv")] + [CLSCompliant(false)] public static unsafe void Vertex3(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75097,6 +76702,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3fv")] + [CLSCompliant(false)] public static void Vertex3(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75108,6 +76714,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3fv")] + [CLSCompliant(false)] public static void Vertex3(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75118,8 +76725,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3fv")] + [CLSCompliant(false)] public static unsafe void Vertex3(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75142,6 +76749,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3iv")] + [CLSCompliant(false)] public static void Vertex3(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75153,6 +76761,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3iv")] + [CLSCompliant(false)] public static void Vertex3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75163,8 +76772,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3iv")] + [CLSCompliant(false)] public static unsafe void Vertex3(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75187,6 +76796,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3sv")] + [CLSCompliant(false)] public static void Vertex3(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75198,6 +76808,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3sv")] + [CLSCompliant(false)] public static void Vertex3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75208,8 +76819,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3sv")] + [CLSCompliant(false)] public static unsafe void Vertex3(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75232,6 +76843,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4dv")] + [CLSCompliant(false)] public static void Vertex4(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75243,6 +76855,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4dv")] + [CLSCompliant(false)] public static void Vertex4(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75253,8 +76866,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4dv")] + [CLSCompliant(false)] public static unsafe void Vertex4(Double* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75277,6 +76890,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4fv")] + [CLSCompliant(false)] public static void Vertex4(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75288,6 +76902,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4fv")] + [CLSCompliant(false)] public static void Vertex4(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75298,8 +76913,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4fv")] + [CLSCompliant(false)] public static unsafe void Vertex4(Single* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75322,6 +76937,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4iv")] + [CLSCompliant(false)] public static void Vertex4(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75333,6 +76949,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4iv")] + [CLSCompliant(false)] public static void Vertex4(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75343,8 +76960,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4iv")] + [CLSCompliant(false)] public static unsafe void Vertex4(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75367,6 +76984,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4sv")] + [CLSCompliant(false)] public static void Vertex4(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75378,6 +76996,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4sv")] + [CLSCompliant(false)] public static void Vertex4(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.0][deprecated: v3.2] @@ -75388,8 +77007,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4sv")] + [CLSCompliant(false)] public static unsafe void Vertex4(Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75426,6 +77045,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Double x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75461,8 +77081,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75498,8 +77118,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75535,8 +77155,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75573,6 +77193,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75608,8 +77229,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75645,8 +77266,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75682,8 +77303,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75720,6 +77341,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Int16 x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75755,8 +77377,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75792,8 +77414,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75829,8 +77451,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75867,6 +77489,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2d")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75902,8 +77525,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2d")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75940,6 +77563,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -75976,6 +77600,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76011,8 +77636,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76048,8 +77673,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76085,8 +77710,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76122,8 +77747,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76160,6 +77785,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76195,8 +77821,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76233,6 +77859,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76269,6 +77896,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76304,8 +77932,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76341,8 +77969,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76378,8 +78006,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76415,8 +78043,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76453,6 +78081,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2s")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76488,8 +78117,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2s")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76526,6 +78155,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76562,6 +78192,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76597,8 +78228,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76634,8 +78265,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76671,8 +78302,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76708,8 +78339,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76746,6 +78377,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3d")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76781,8 +78413,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3d")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76819,6 +78451,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76855,6 +78488,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76890,8 +78524,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76927,8 +78561,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -76964,8 +78598,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77001,8 +78635,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77039,6 +78673,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77074,8 +78709,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77112,6 +78747,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77148,6 +78784,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77183,8 +78820,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77220,8 +78857,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77257,8 +78894,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77294,8 +78931,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77332,6 +78969,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3s")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77367,8 +79005,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3s")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77405,6 +79043,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77441,6 +79080,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77476,8 +79116,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77513,8 +79153,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77550,8 +79190,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77587,8 +79227,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77624,8 +79264,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, SByte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77661,8 +79301,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref SByte v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77698,8 +79338,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, SByte* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77736,6 +79376,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4d")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77771,8 +79412,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4d")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77809,6 +79450,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77845,6 +79487,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77880,8 +79523,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77917,8 +79560,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77954,8 +79597,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -77991,8 +79634,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78029,6 +79672,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78064,8 +79708,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78102,6 +79746,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78138,6 +79783,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78173,8 +79819,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78210,8 +79856,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78247,8 +79893,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78284,8 +79930,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78322,6 +79968,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78358,6 +80005,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78393,8 +80041,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78430,8 +80078,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78467,8 +80115,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78504,146 +80152,153 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, SByte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref SByte v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, SByte* v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, UInt16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref UInt16 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, UInt16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78680,6 +80335,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4s")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78715,8 +80371,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4s")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78753,6 +80409,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78789,6 +80446,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78824,8 +80482,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78861,8 +80519,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78898,8 +80556,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78935,8 +80593,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -78973,6 +80631,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79009,6 +80668,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79044,8 +80704,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79081,8 +80741,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79118,8 +80778,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79155,8 +80815,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79192,8 +80852,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79229,8 +80889,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79266,8 +80926,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79303,8 +80963,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, UInt16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79340,8 +81000,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref UInt16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -79377,8 +81037,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, UInt16* v) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -79395,6 +81055,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribBinding")] + [CLSCompliant(false)] public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -79410,8 +81071,8 @@ namespace OpenTK.Graphics.OpenGL /// The index of the vertex buffer binding with which to associate the generic vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribBinding")] + [CLSCompliant(false)] public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } /// [requires: v3.3] @@ -79428,6 +81089,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: v3.3] @@ -79443,8 +81105,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -79476,6 +81138,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribFormat")] + [CLSCompliant(false)] public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -79506,329 +81169,349 @@ namespace OpenTK.Graphics.OpenGL /// The distance between elements within the buffer. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribFormat")] + [CLSCompliant(false)] public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] + [CLSCompliant(false)] public static void VertexAttribI1(Int32 index, Int32 x) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] + [CLSCompliant(false)] public static void VertexAttribI1(UInt32 index, Int32 x) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI1(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI1(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1ui")] + [CLSCompliant(false)] public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI1(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2i")] + [CLSCompliant(false)] public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2i")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static void VertexAttribI2(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static void VertexAttribI2(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI2(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI2(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2ui")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI2(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3i")] + [CLSCompliant(false)] public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3i")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static void VertexAttribI3(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static void VertexAttribI3(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI3(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI3(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3ui")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI3(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, SByte[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref SByte v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, SByte* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ui")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt16[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref UInt16 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, UInt16* v) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribIFormat")] + [CLSCompliant(false)] public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribIFormat")] + [CLSCompliant(false)] public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, UInt32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } @@ -79836,11 +81519,13 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -79848,6 +81533,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -79855,6 +81541,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -79862,355 +81549,376 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [Obsolete("Use VertexAttribIntegerType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1d")] + [CLSCompliant(false)] public static void VertexAttribL1(Int32 index, Double x) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1d")] + [CLSCompliant(false)] public static void VertexAttribL1(UInt32 index, Double x) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2d")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2d")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL2(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL2(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3d")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3d")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL3(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL3(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4d")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4d")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL4(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL4(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribLFormat")] + [CLSCompliant(false)] public static void VertexAttribLFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribLFormat")] + [CLSCompliant(false)] public static void VertexAttribLFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, UInt32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1ui")] + [CLSCompliant(false)] public static void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1ui")] + [CLSCompliant(false)] public static void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2ui")] + [CLSCompliant(false)] public static void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2ui")] + [CLSCompliant(false)] public static void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3ui")] + [CLSCompliant(false)] public static void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3ui")] + [CLSCompliant(false)] public static void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4ui")] + [CLSCompliant(false)] public static void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4ui")] + [CLSCompliant(false)] public static void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -80247,6 +81955,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -80283,6 +81992,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -80321,6 +82031,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -80359,6 +82070,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -80397,6 +82109,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -80434,8 +82147,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -80471,8 +82184,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -80510,8 +82223,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -80549,8 +82262,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -80588,8 +82301,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -80608,6 +82321,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexBindingDivisor")] + [CLSCompliant(false)] public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -80623,65 +82337,68 @@ namespace OpenTK.Graphics.OpenGL /// The new value for the instance step rate to apply. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexBindingDivisor")] + [CLSCompliant(false)] public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2ui")] + [CLSCompliant(false)] public static void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2ui")] + [CLSCompliant(false)] public static void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2uiv")] + [CLSCompliant(false)] public static unsafe void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2uiv")] + [CLSCompliant(false)] public static unsafe void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3ui")] + [CLSCompliant(false)] public static void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3ui")] + [CLSCompliant(false)] public static void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3uiv")] + [CLSCompliant(false)] public static unsafe void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3uiv")] + [CLSCompliant(false)] public static unsafe void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4ui")] + [CLSCompliant(false)] public static void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4ui")] + [CLSCompliant(false)] public static void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4uiv")] + [CLSCompliant(false)] public static unsafe void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4uiv")] + [CLSCompliant(false)] public static unsafe void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32* value) { throw new NotImplementedException(); } /// [requires: v1.1][deprecated: v3.2] @@ -80734,6 +82451,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glVertexPointer")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -80762,6 +82480,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glVertexPointer")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -80790,6 +82509,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glVertexPointer")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -80857,6 +82577,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static void ViewportArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -80878,6 +82599,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static void ViewportArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -80898,8 +82620,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static unsafe void ViewportArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -80920,8 +82642,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static void ViewportArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -80942,8 +82664,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static void ViewportArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -80964,8 +82686,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static unsafe void ViewportArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -80992,6 +82714,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedf")] + [CLSCompliant(false)] public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -81017,8 +82740,8 @@ namespace OpenTK.Graphics.OpenGL /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedf")] + [CLSCompliant(false)] public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -81045,6 +82768,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static void ViewportIndexed(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -81071,6 +82795,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static void ViewportIndexed(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -81096,8 +82821,8 @@ namespace OpenTK.Graphics.OpenGL /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static unsafe void ViewportIndexed(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -81123,8 +82848,8 @@ namespace OpenTK.Graphics.OpenGL /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static void ViewportIndexed(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -81150,8 +82875,8 @@ namespace OpenTK.Graphics.OpenGL /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static void ViewportIndexed(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -81177,8 +82902,8 @@ namespace OpenTK.Graphics.OpenGL /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static unsafe void ViewportIndexed(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -81201,6 +82926,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use WaitSyncFlags overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -81222,8 +82948,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use WaitSyncFlags overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -81245,8 +82971,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use WaitSyncFlags overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -81268,6 +82994,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -81288,8 +83015,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81312,6 +83039,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2dv")] + [CLSCompliant(false)] public static void WindowPos2(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81323,6 +83051,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2dv")] + [CLSCompliant(false)] public static void WindowPos2(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81333,8 +83062,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2dv")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Double* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81357,6 +83086,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2fv")] + [CLSCompliant(false)] public static void WindowPos2(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81368,6 +83098,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2fv")] + [CLSCompliant(false)] public static void WindowPos2(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81378,8 +83109,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2fv")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Single* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81402,6 +83133,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2iv")] + [CLSCompliant(false)] public static void WindowPos2(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81413,6 +83145,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2iv")] + [CLSCompliant(false)] public static void WindowPos2(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81423,8 +83156,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2iv")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81447,6 +83180,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2sv")] + [CLSCompliant(false)] public static void WindowPos2(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81458,6 +83192,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2sv")] + [CLSCompliant(false)] public static void WindowPos2(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81468,8 +83203,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2sv")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Int16* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81492,6 +83227,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3dv")] + [CLSCompliant(false)] public static void WindowPos3(Double[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81503,6 +83239,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3dv")] + [CLSCompliant(false)] public static void WindowPos3(ref Double v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81513,8 +83250,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3dv")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Double* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81537,6 +83274,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3fv")] + [CLSCompliant(false)] public static void WindowPos3(Single[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81548,6 +83286,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3fv")] + [CLSCompliant(false)] public static void WindowPos3(ref Single v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81558,8 +83297,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3fv")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Single* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81582,6 +83321,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3iv")] + [CLSCompliant(false)] public static void WindowPos3(Int32[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81593,6 +83333,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3iv")] + [CLSCompliant(false)] public static void WindowPos3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81603,8 +83344,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3iv")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Int32* v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81627,6 +83368,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3sv")] + [CLSCompliant(false)] public static void WindowPos3(Int16[] v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81638,6 +83380,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3sv")] + [CLSCompliant(false)] public static void WindowPos3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: v1.4][deprecated: v3.2] @@ -81648,19 +83391,20 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3sv")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Int16* v) { throw new NotImplementedException(); } public static partial class Ext { /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] + [CLSCompliant(false)] public static void ActiveProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] + [CLSCompliant(false)] public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -81677,6 +83421,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] + [CLSCompliant(false)] public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -81692,8 +83437,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to set as the active program pipeline object pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] + [CLSCompliant(false)] public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_stencil_two_side] @@ -81723,6 +83468,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] + [CLSCompliant(false)] public static bool AreTexturesResident(Int32 n, Int32[] textures, [OutAttribute] bool[] residences) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -81744,6 +83490,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] + [CLSCompliant(false)] public static bool AreTexturesResident(Int32 n, ref Int32 textures, [OutAttribute] out bool residences) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -81764,8 +83511,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the texture residence status is returned. The residence status of a texture named by an element of textures is returned in the corresponding element of residences. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] + [CLSCompliant(false)] public static unsafe bool AreTexturesResident(Int32 n, Int32* textures, [OutAttribute] bool* residences) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -81786,8 +83533,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the texture residence status is returned. The residence status of a texture named by an element of textures is returned in the corresponding element of residences. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] + [CLSCompliant(false)] public static bool AreTexturesResident(Int32 n, UInt32[] textures, [OutAttribute] bool[] residences) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -81808,8 +83555,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the texture residence status is returned. The residence status of a texture named by an element of textures is returned in the corresponding element of residences. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] + [CLSCompliant(false)] public static bool AreTexturesResident(Int32 n, ref UInt32 textures, [OutAttribute] out bool residences) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -81830,8 +83577,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the texture residence status is returned. The residence status of a texture named by an element of textures is returned in the corresponding element of residences. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] + [CLSCompliant(false)] public static unsafe bool AreTexturesResident(Int32 n, UInt32* textures, [OutAttribute] bool* residences) { throw new NotImplementedException(); } /// [requires: EXT_vertex_array] @@ -81879,6 +83626,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseEXT")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -81899,17 +83647,18 @@ namespace OpenTK.Graphics.OpenGL /// The name of a buffer object to bind to the specified binding point. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseEXT")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetEXT")] + [CLSCompliant(false)] public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetEXT")] + [CLSCompliant(false)] public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -81941,6 +83690,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -81971,8 +83721,8 @@ namespace OpenTK.Graphics.OpenGL /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -81994,6 +83744,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glBindFragDataLocationEXT")] + [CLSCompliant(false)] public static void BindFragDataLocation(Int32 program, Int32 color, String name) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -82014,8 +83765,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of the user-defined varying out variable whose binding to modify /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glBindFragDataLocationEXT")] + [CLSCompliant(false)] public static void BindFragDataLocation(UInt32 program, UInt32 color, String name) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -82032,6 +83783,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferEXT")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -82047,8 +83799,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the framebuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferEXT")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: EXT_shader_image_load_store] @@ -82090,6 +83842,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glBindImageTextureEXT")] + [CLSCompliant(false)] public static void BindImageTexture(Int32 index, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new NotImplementedException(); } /// [requires: EXT_shader_image_load_store] @@ -82130,8 +83883,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the format that the elements of the image will be treated as for the purposes of formatted stores. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glBindImageTextureEXT")] + [CLSCompliant(false)] public static void BindImageTexture(UInt32 index, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] @@ -82144,11 +83897,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glBindMultiTextureEXT")] + [CLSCompliant(false)] public static void BindMultiTexture(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glBindMultiTextureEXT")] + [CLSCompliant(false)] public static void BindMultiTexture(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] @@ -82164,6 +83918,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] + [CLSCompliant(false)] public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -82174,8 +83929,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the pipeline object to bind to the context. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] + [CLSCompliant(false)] public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -82192,6 +83947,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferEXT")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -82207,8 +83963,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the renderbuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferEXT")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] @@ -82229,6 +83985,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glBindTextureEXT")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -82244,8 +84001,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glBindTextureEXT")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] @@ -82254,48 +84011,52 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindVertexShaderEXT")] + [CLSCompliant(false)] public static void BindVertexShader(Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindVertexShaderEXT")] + [CLSCompliant(false)] public static void BindVertexShader(UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bEXT")] + [CLSCompliant(false)] public static void Binormal3(Byte bx, Byte by, Byte bz) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bEXT")] + [CLSCompliant(false)] public static void Binormal3(SByte bx, SByte by, SByte bz) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] + [CLSCompliant(false)] public static void Binormal3(Byte[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] + [CLSCompliant(false)] public static void Binormal3(ref Byte v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] + [CLSCompliant(false)] public static unsafe void Binormal3(Byte* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] + [CLSCompliant(false)] public static void Binormal3(SByte[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] + [CLSCompliant(false)] public static void Binormal3(ref SByte v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] + [CLSCompliant(false)] public static unsafe void Binormal3(SByte* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -82304,15 +84065,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dvEXT")] + [CLSCompliant(false)] public static void Binormal3(Double[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dvEXT")] + [CLSCompliant(false)] public static void Binormal3(ref Double v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dvEXT")] + [CLSCompliant(false)] public static unsafe void Binormal3(Double* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -82321,15 +84084,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fvEXT")] + [CLSCompliant(false)] public static void Binormal3(Single[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fvEXT")] + [CLSCompliant(false)] public static void Binormal3(ref Single v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fvEXT")] + [CLSCompliant(false)] public static unsafe void Binormal3(Single* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -82338,15 +84103,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3ivEXT")] + [CLSCompliant(false)] public static void Binormal3(Int32[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3ivEXT")] + [CLSCompliant(false)] public static void Binormal3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3ivEXT")] + [CLSCompliant(false)] public static unsafe void Binormal3(Int32* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -82355,15 +84122,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3svEXT")] + [CLSCompliant(false)] public static void Binormal3(Int16[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3svEXT")] + [CLSCompliant(false)] public static void Binormal3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3svEXT")] + [CLSCompliant(false)] public static unsafe void Binormal3(Int16* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -82372,18 +84141,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormalPointerEXT")] + [CLSCompliant(false)] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormalPointerEXT")] + [CLSCompliant(false)] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormalPointerEXT")] + [CLSCompliant(false)] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -82578,11 +84350,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] @@ -82590,128 +84363,138 @@ namespace OpenTK.Graphics.OpenGL public static void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glClearColorIuiEXT")] + [CLSCompliant(false)] public static void ClearColorI(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new NotImplementedException(); } @@ -82722,11 +84505,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_draw_buffers2] [AutoGenerated(Category = "EXT_draw_buffers2", Version = "", EntryPoint = "glColorMaskIndexedEXT")] + [CLSCompliant(false)] public static void ColorMaskIndexed(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } /// [requires: EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_buffers2", Version = "", EntryPoint = "glColorMaskIndexedEXT")] + [CLSCompliant(false)] public static void ColorMaskIndexed(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } /// [requires: EXT_vertex_array] @@ -82779,6 +84563,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glColorPointerEXT")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -82807,6 +84592,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glColorPointerEXT")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -82835,6 +84621,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glColorPointerEXT")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -82937,6 +84724,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_color_subtable", Version = "", EntryPoint = "glColorSubTableEXT")] + [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] data) where T5 : struct { throw new NotImplementedException(); } @@ -82975,6 +84763,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_color_subtable", Version = "", EntryPoint = "glColorSubTableEXT")] + [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] data) where T5 : struct { throw new NotImplementedException(); } @@ -83013,6 +84802,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_color_subtable", Version = "", EntryPoint = "glColorSubTableEXT")] + [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] data) where T5 : struct { throw new NotImplementedException(); } @@ -83125,6 +84915,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] table) where T5 : struct { throw new NotImplementedException(); } @@ -83163,6 +84954,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] table) where T5 : struct { throw new NotImplementedException(); } @@ -83201,6 +84993,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] table) where T5 : struct { throw new NotImplementedException(); } @@ -83249,18 +85042,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] bits) where T7 : struct { throw new NotImplementedException(); } @@ -83277,18 +85073,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] bits) where T8 : struct { throw new NotImplementedException(); } @@ -83305,18 +85104,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T9[] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T9[,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T9[,,] bits) where T9 : struct { throw new NotImplementedException(); } @@ -83333,18 +85135,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T7[] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T7[,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] bits) where T7 : struct { throw new NotImplementedException(); } @@ -83361,18 +85166,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T9[] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T9[,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T9[,,] bits) where T9 : struct { throw new NotImplementedException(); } @@ -83389,18 +85197,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T11[] bits) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T11[,] bits) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T11[,,] bits) where T11 : struct { throw new NotImplementedException(); } @@ -83413,366 +85224,396 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] ref T7 bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] ref T7 bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] ref T8 bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] ref T8 bits) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T9[] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T9[,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T9[,,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] ref T9 bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T9[] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T9[,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T9[,,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] ref T9 bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T7[] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T7[,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T7 bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T7[] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T7[,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T7 bits) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T9[] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T9[,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T9[,,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T9 bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T9[] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T9[,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T9[,,] bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T9 bits) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T11[] bits) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T11[,] bits) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T11[,,] bits) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T11 bits) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr bits) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T11[] bits) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T11[,] bits) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T11[,,] bits) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T11 bits) where T11 : struct { throw new NotImplementedException(); } @@ -83847,6 +85688,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] image) where T5 : struct { throw new NotImplementedException(); } @@ -83885,6 +85727,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] image) where T5 : struct { throw new NotImplementedException(); } @@ -83923,6 +85766,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] image) where T5 : struct { throw new NotImplementedException(); } @@ -84037,6 +85881,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] image) where T5 : struct { throw new NotImplementedException(); } @@ -84076,6 +85921,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] image) where T5 : struct { throw new NotImplementedException(); } @@ -84115,6 +85961,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] image) where T5 : struct { throw new NotImplementedException(); } @@ -84238,6 +86085,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] image) where T6 : struct { throw new NotImplementedException(); } @@ -84281,6 +86129,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] image) where T6 : struct { throw new NotImplementedException(); } @@ -84324,6 +86173,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] image) where T6 : struct { throw new NotImplementedException(); } @@ -84453,6 +86303,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] image) where T6 : struct { throw new NotImplementedException(); } @@ -84497,6 +86348,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] image) where T6 : struct { throw new NotImplementedException(); } @@ -84541,6 +86393,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] image) where T6 : struct { throw new NotImplementedException(); } @@ -84660,6 +86513,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -84683,8 +86537,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -84710,6 +86564,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -84734,8 +86589,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ConvolutionTargetExt overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -84809,6 +86664,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] + [CLSCompliant(false)] public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -84832,8 +86688,8 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -84859,6 +86715,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] + [CLSCompliant(false)] public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -84883,8 +86740,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ConvolutionTargetExt overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_color_subtable] @@ -85246,47 +87103,52 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] + [CLSCompliant(false)] public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] + [CLSCompliant(false)] public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] + [CLSCompliant(false)] public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] + [CLSCompliant(false)] public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CopyTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void CopyTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CopyTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void CopyTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CopyTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void CopyTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -85333,37 +87195,42 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_cull_vertex] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterdvEXT")] + [CLSCompliant(false)] public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_cull_vertex] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterdvEXT")] + [CLSCompliant(false)] public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: EXT_cull_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterdvEXT")] + [CLSCompliant(false)] public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_cull_vertex] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterfvEXT")] + [CLSCompliant(false)] public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_cull_vertex] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterfvEXT")] + [CLSCompliant(false)] public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_cull_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] + [CLSCompliant(false)] public static void DeleteFramebuffer(Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] + [CLSCompliant(false)] public static void DeleteFramebuffer(UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85380,6 +87247,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85396,6 +87264,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85411,8 +87280,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85428,8 +87297,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85445,8 +87314,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85462,17 +87331,18 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(Int32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -85489,6 +87359,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -85505,6 +87376,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref Int32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -85520,8 +87392,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, Int32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -85537,8 +87409,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -85554,8 +87426,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -85571,17 +87443,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85598,6 +87471,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85614,6 +87488,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85629,8 +87504,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85646,8 +87521,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85663,8 +87538,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -85680,17 +87555,18 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] + [CLSCompliant(false)] public static void DeleteTexture(Int32 textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] + [CLSCompliant(false)] public static void DeleteTexture(UInt32 textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -85707,6 +87583,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, Int32[] textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -85723,6 +87600,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -85738,8 +87616,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, Int32* textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -85755,8 +87633,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -85772,8 +87650,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -85789,17 +87667,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, UInt32* textures) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDeleteVertexShaderEXT")] + [CLSCompliant(false)] public static void DeleteVertexShader(Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDeleteVertexShaderEXT")] + [CLSCompliant(false)] public static void DeleteVertexShader(UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_depth_bounds_test] @@ -85808,78 +87687,86 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateiEXT")] + [CLSCompliant(false)] public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateiEXT")] + [CLSCompliant(false)] public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] + [CLSCompliant(false)] public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] + [CLSCompliant(false)] public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use ArrayCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] + [CLSCompliant(false)] public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use ArrayCap overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] + [CLSCompliant(false)] public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use IndexedEnableCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glDisableIndexedEXT")] + [CLSCompliant(false)] public static void DisableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use IndexedEnableCap overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glDisableIndexedEXT")] + [CLSCompliant(false)] public static void DisableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glDisableIndexedEXT")] + [CLSCompliant(false)] public static void DisableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glDisableIndexedEXT")] + [CLSCompliant(false)] public static void DisableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDisableVariantClientStateEXT")] + [CLSCompliant(false)] public static void DisableVariantClientState(Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDisableVariantClientStateEXT")] + [CLSCompliant(false)] public static void DisableVariantClientState(UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayAttribEXT")] + [CLSCompliant(false)] public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayAttribEXT")] + [CLSCompliant(false)] public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayEXT")] + [CLSCompliant(false)] public static void DisableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayEXT")] + [CLSCompliant(false)] public static void DisableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new NotImplementedException(); } /// [requires: EXT_vertex_array] @@ -86040,6 +87927,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -86074,6 +87962,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -86108,6 +87997,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -86206,6 +88096,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -86239,6 +88130,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -86272,6 +88164,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -86344,6 +88237,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: EXT_draw_range_elements] @@ -86381,6 +88275,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86420,6 +88315,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86459,6 +88355,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86498,6 +88395,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -86536,8 +88434,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: EXT_draw_range_elements] @@ -86574,8 +88472,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86614,8 +88512,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86654,8 +88552,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86694,8 +88592,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -86734,6 +88632,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: EXT_draw_range_elements] @@ -86770,6 +88669,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86808,6 +88708,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86846,6 +88747,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86884,6 +88786,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -86921,8 +88824,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: EXT_draw_range_elements] @@ -86958,8 +88861,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -86997,8 +88900,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -87036,8 +88939,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -87075,8 +88978,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -87095,6 +88998,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glEdgeFlagPointerEXT")] + [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, Int32 count, bool[] pointer) { throw new NotImplementedException(); } /// [requires: EXT_vertex_array] @@ -87111,6 +89015,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glEdgeFlagPointerEXT")] + [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, Int32 count, ref bool pointer) { throw new NotImplementedException(); } /// [requires: EXT_vertex_array] @@ -87126,8 +89031,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first edge flag in the array. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glEdgeFlagPointerEXT")] + [CLSCompliant(false)] public static unsafe void EdgeFlagPointer(Int32 stride, Int32 count, bool* pointer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -87139,6 +89044,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateiEXT")] + [CLSCompliant(false)] public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -87149,75 +89055,82 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the capability to enable. Symbolic constants GL_COLOR_ARRAY, GL_EDGE_FLAG_ARRAY, GL_FOG_COORD_ARRAY, GL_INDEX_ARRAY, GL_NORMAL_ARRAY, GL_SECONDARY_COLOR_ARRAY, GL_TEXTURE_COORD_ARRAY, and GL_VERTEX_ARRAY are accepted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateiEXT")] + [CLSCompliant(false)] public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] + [CLSCompliant(false)] public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] + [CLSCompliant(false)] public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use ArrayCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] + [CLSCompliant(false)] public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use ArrayCap overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] + [CLSCompliant(false)] public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use IndexedEnableCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glEnableIndexedEXT")] + [CLSCompliant(false)] public static void EnableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use IndexedEnableCap overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glEnableIndexedEXT")] + [CLSCompliant(false)] public static void EnableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glEnableIndexedEXT")] + [CLSCompliant(false)] public static void EnableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glEnableIndexedEXT")] + [CLSCompliant(false)] public static void EnableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glEnableVariantClientStateEXT")] + [CLSCompliant(false)] public static void EnableVariantClientState(Int32 id) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glEnableVariantClientStateEXT")] + [CLSCompliant(false)] public static void EnableVariantClientState(UInt32 id) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayAttribEXT")] + [CLSCompliant(false)] public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayAttribEXT")] + [CLSCompliant(false)] public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayEXT")] + [CLSCompliant(false)] public static void EnableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayEXT")] + [CLSCompliant(false)] public static void EnableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -87230,20 +89143,22 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glExtractComponentEXT")] + [CLSCompliant(false)] public static void ExtractComponent(Int32 res, Int32 src, Int32 num) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glExtractComponentEXT")] + [CLSCompliant(false)] public static void ExtractComponent(UInt32 res, UInt32 src, UInt32 num) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] + [CLSCompliant(false)] public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] + [CLSCompliant(false)] public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } /// [requires: EXT_fog_coord] @@ -87265,8 +89180,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoorddvEXT")] + [CLSCompliant(false)] public static unsafe void FogCoord(Double* coord) { throw new NotImplementedException(); } /// [requires: EXT_fog_coord] @@ -87288,8 +89203,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordfvEXT")] + [CLSCompliant(false)] public static unsafe void FogCoord(Single* coord) { throw new NotImplementedException(); } /// [requires: EXT_fog_coord] @@ -87334,6 +89249,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use FogPointerTypeExt overload instead")] [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] + [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -87358,6 +89274,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use FogPointerTypeExt overload instead")] [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] + [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -87382,6 +89299,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use FogPointerTypeExt overload instead")] [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] + [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -87450,6 +89368,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] + [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -87473,6 +89392,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] + [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -87496,6 +89416,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] + [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -87525,48 +89446,52 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")] + [CLSCompliant(false)] public static void FramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode mode) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")] + [CLSCompliant(false)] public static void FramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode mode) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] + [CLSCompliant(false)] public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] + [CLSCompliant(false)] public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] + [CLSCompliant(false)] public static unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] + [CLSCompliant(false)] public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] + [CLSCompliant(false)] public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] + [CLSCompliant(false)] public static unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferReadBufferEXT")] + [CLSCompliant(false)] public static void FramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode mode) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferReadBufferEXT")] + [CLSCompliant(false)] public static void FramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode mode) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -87593,6 +89518,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferEXT")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -87618,35 +89544,38 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferEXT")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture1DEXT")] + [CLSCompliant(false)] public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture1DEXT")] + [CLSCompliant(false)] public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DEXT")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DEXT")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture3DEXT")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture3DEXT")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: NV_geometry_program4] @@ -87678,6 +89607,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureEXT")] + [CLSCompliant(false)] public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: NV_geometry_program4] @@ -87708,8 +89638,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mipmap level of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureEXT")] + [CLSCompliant(false)] public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: NV_geometry_program4] @@ -87741,6 +89671,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureFaceEXT")] + [CLSCompliant(false)] public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } /// [requires: NV_geometry_program4] @@ -87771,8 +89702,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the face of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureFaceEXT")] + [CLSCompliant(false)] public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } /// [requires: NV_geometry_program4] @@ -87804,6 +89735,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureLayerEXT")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: NV_geometry_program4] @@ -87834,8 +89766,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the layer of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureLayerEXT")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -87855,15 +89787,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")] + [CLSCompliant(false)] public static void GenerateTextureMipmap(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")] + [CLSCompliant(false)] public static void GenerateTextureMipmap(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] + [CLSCompliant(false)] public static Int32 GenFramebuffer() { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -87880,6 +89814,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -87896,6 +89831,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -87911,8 +89847,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -87928,8 +89864,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -87945,8 +89881,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -87962,12 +89898,13 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -87984,6 +89921,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -88000,6 +89938,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -88015,8 +89954,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -88032,8 +89971,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -88049,8 +89988,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -88066,12 +90005,13 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] + [CLSCompliant(false)] public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -88088,6 +90028,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -88104,6 +90045,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -88119,8 +90061,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -88136,8 +90078,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -88153,8 +90095,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -88170,21 +90112,23 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenSymbolsEXT")] + [CLSCompliant(false)] public static Int32 GenSymbol(OpenTK.Graphics.OpenGL.ExtVertexShader datatype, OpenTK.Graphics.OpenGL.ExtVertexShader storagetype, OpenTK.Graphics.OpenGL.ExtVertexShader range, Int32 components) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenSymbolsEXT")] + [CLSCompliant(false)] public static Int32 GenSymbol(OpenTK.Graphics.OpenGL.ExtVertexShader datatype, OpenTK.Graphics.OpenGL.ExtVertexShader storagetype, OpenTK.Graphics.OpenGL.ExtVertexShader range, UInt32 components) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] + [CLSCompliant(false)] public static Int32 GenTexture() { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -88201,6 +90145,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -88217,6 +90162,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -88232,8 +90178,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -88249,8 +90195,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -88266,8 +90212,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -88283,79 +90229,84 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenVertexShadersEXT")] + [CLSCompliant(false)] public static Int32 GenVertexShaders(Int32 range) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenVertexShadersEXT")] + [CLSCompliant(false)] public static Int32 GenVertexShaders(UInt32 range) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use All overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_paletted_texture] @@ -88408,6 +90359,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableEXT")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -88436,6 +90388,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableEXT")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -88464,6 +90417,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableEXT")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -88515,6 +90469,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterfvEXT")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_paletted_texture] @@ -88536,6 +90491,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterfvEXT")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_paletted_texture] @@ -88556,8 +90512,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameter will be stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_paletted_texture] @@ -88579,6 +90535,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterivEXT")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_paletted_texture] @@ -88600,6 +90557,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterivEXT")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_paletted_texture] @@ -88620,8 +90578,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameter will be stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -88630,18 +90588,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] + [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] T3[] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] + [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] T3[,] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] + [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] T3[,,] img) where T3 : struct { throw new NotImplementedException(); } @@ -88654,61 +90615,66 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute] IntPtr img) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] T3[] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] T3[,] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] T3[,,] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] ref T3 img) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute] IntPtr img) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] T3[] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] T3[,] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] T3[,,] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] + [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute] ref T3 img) where T3 : struct { throw new NotImplementedException(); } @@ -88763,6 +90729,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] image) where T3 : struct { throw new NotImplementedException(); } @@ -88791,6 +90758,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] image) where T3 : struct { throw new NotImplementedException(); } @@ -88819,6 +90787,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] image) where T3 : struct { throw new NotImplementedException(); } @@ -88903,6 +90872,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] image) where T3 : struct { throw new NotImplementedException(); } @@ -88932,6 +90902,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] image) where T3 : struct { throw new NotImplementedException(); } @@ -88961,6 +90932,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] image) where T3 : struct { throw new NotImplementedException(); } @@ -89013,6 +90985,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89034,6 +91007,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89054,8 +91028,8 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the parameters to be retrieved. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89078,6 +91052,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89100,6 +91075,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89121,8 +91097,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ConvolutionTargetExt overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89144,6 +91120,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89165,6 +91142,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89185,8 +91163,8 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the parameters to be retrieved. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89209,6 +91187,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89231,6 +91210,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -89252,120 +91232,128 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ConvolutionTargetExt overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] + [CLSCompliant(false)] public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] + [CLSCompliant(false)] public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] + [CLSCompliant(false)] public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Double[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] + [CLSCompliant(false)] public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] out Double data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Double* data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] + [CLSCompliant(false)] public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Double[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] + [CLSCompliant(false)] public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] out Double data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Double* data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] + [CLSCompliant(false)] public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] + [CLSCompliant(false)] public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] + [CLSCompliant(false)] public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] + [CLSCompliant(false)] public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -89382,6 +91370,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetFragDataLocationEXT")] + [CLSCompliant(false)] public static Int32 GetFragDataLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -89397,8 +91386,8 @@ namespace OpenTK.Graphics.OpenGL /// The name of the user-defined varying out variable whose binding to query /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetFragDataLocationEXT")] + [CLSCompliant(false)] public static Int32 GetFragDataLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -89425,6 +91414,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivEXT")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -89451,6 +91441,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivEXT")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -89476,8 +91467,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable receive the value of pname for attachment. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -89499,6 +91490,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] + [CLSCompliant(false)] public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -89520,6 +91512,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] + [CLSCompliant(false)] public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -89540,8 +91533,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a variable to receive the value of the parameter named pname. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -89562,8 +91555,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a variable to receive the value of the parameter named pname. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] + [CLSCompliant(false)] public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -89584,8 +91577,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a variable to receive the value of the parameter named pname. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] + [CLSCompliant(false)] public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -89606,8 +91599,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a variable to receive the value of the parameter named pname. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -89672,6 +91665,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] values) where T4 : struct { throw new NotImplementedException(); } @@ -89706,6 +91700,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] values) where T4 : struct { throw new NotImplementedException(); } @@ -89740,6 +91735,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] values) where T4 : struct { throw new NotImplementedException(); } @@ -89838,6 +91834,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] values) where T4 : struct { throw new NotImplementedException(); } @@ -89871,6 +91868,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] values) where T4 : struct { throw new NotImplementedException(); } @@ -89904,6 +91902,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] values) where T4 : struct { throw new NotImplementedException(); } @@ -89961,6 +91960,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -89983,6 +91983,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90004,8 +92005,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use HistogramTargetExt overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90027,6 +92028,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90048,6 +92050,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90068,8 +92071,8 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the returned values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90092,6 +92095,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90114,6 +92118,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90135,8 +92140,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use HistogramTargetExt overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90158,6 +92163,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90179,6 +92185,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90199,238 +92206,254 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the returned values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use GetIndexedPName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use GetIndexedPName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use GetIndexedPName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use GetIndexedPName overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] + [CLSCompliant(false)] public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] + [CLSCompliant(false)] public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] + [CLSCompliant(false)] public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] + [CLSCompliant(false)] public static unsafe void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] + [CLSCompliant(false)] public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] + [CLSCompliant(false)] public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] + [CLSCompliant(false)] public static unsafe void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] + [CLSCompliant(false)] public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] + [CLSCompliant(false)] public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] + [CLSCompliant(false)] public static unsafe void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] + [CLSCompliant(false)] public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] + [CLSCompliant(false)] public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] + [CLSCompliant(false)] public static unsafe void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] + [CLSCompliant(false)] public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] + [CLSCompliant(false)] public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] + [CLSCompliant(false)] public static unsafe void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] + [CLSCompliant(false)] public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] + [CLSCompliant(false)] public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] + [CLSCompliant(false)] public static unsafe void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] + [CLSCompliant(false)] public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] + [CLSCompliant(false)] public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] + [CLSCompliant(false)] public static unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] + [CLSCompliant(false)] public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] + [CLSCompliant(false)] public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] + [CLSCompliant(false)] public static unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] + [CLSCompliant(false)] public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] + [CLSCompliant(false)] public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] + [CLSCompliant(false)] public static unsafe void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] + [CLSCompliant(false)] public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] + [CLSCompliant(false)] public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] + [CLSCompliant(false)] public static unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] + [CLSCompliant(false)] public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] + [CLSCompliant(false)] public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] + [CLSCompliant(false)] public static unsafe void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] + [CLSCompliant(false)] public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] + [CLSCompliant(false)] public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] + [CLSCompliant(false)] public static unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90495,6 +92518,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] values) where T4 : struct { throw new NotImplementedException(); } @@ -90529,6 +92553,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] values) where T4 : struct { throw new NotImplementedException(); } @@ -90563,6 +92588,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] values) where T4 : struct { throw new NotImplementedException(); } @@ -90661,6 +92687,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] values) where T4 : struct { throw new NotImplementedException(); } @@ -90694,6 +92721,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] values) where T4 : struct { throw new NotImplementedException(); } @@ -90727,6 +92755,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] values) where T4 : struct { throw new NotImplementedException(); } @@ -90784,6 +92813,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90806,6 +92836,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90827,8 +92858,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use MinmaxTargetExt overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90850,6 +92881,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90871,6 +92903,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90891,8 +92924,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the retrieved parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90915,6 +92948,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90937,6 +92971,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90958,8 +92993,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use MinmaxTargetExt overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -90981,6 +93016,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -91002,6 +93038,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -91022,73 +93059,83 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the retrieved parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] + [CLSCompliant(false)] public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] + [CLSCompliant(false)] public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] + [CLSCompliant(false)] public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] + [CLSCompliant(false)] public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] + [CLSCompliant(false)] public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] + [CLSCompliant(false)] public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] + [CLSCompliant(false)] public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] + [CLSCompliant(false)] public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] + [CLSCompliant(false)] public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] + [CLSCompliant(false)] public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -91097,18 +93144,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] + [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] + [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] + [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct { throw new NotImplementedException(); } @@ -91121,518 +93171,559 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] + [CLSCompliant(false)] public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] + [CLSCompliant(false)] public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] + [CLSCompliant(false)] public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] + [CLSCompliant(false)] public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] + [CLSCompliant(false)] public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] + [CLSCompliant(false)] public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] + [CLSCompliant(false)] public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] + [CLSCompliant(false)] public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] + [CLSCompliant(false)] public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] + [CLSCompliant(false)] public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] + [CLSCompliant(false)] public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] + [CLSCompliant(false)] public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] + [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use ProgramProperty overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] + [CLSCompliant(false)] public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use ProgramProperty overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] + [CLSCompliant(false)] public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use ProgramProperty overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] + [CLSCompliant(false)] public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use ProgramProperty overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] + [CLSCompliant(false)] public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] + [CLSCompliant(false)] public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr @string) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[] @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,] @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,,] @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T3 @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr @string) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[] @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,] @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,,] @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] + [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T3 @string) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] + [CLSCompliant(false)] public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -91664,6 +93755,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -91695,6 +93787,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -91725,8 +93818,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -91757,8 +93850,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -91789,8 +93882,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] @@ -91821,154 +93914,168 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: EXT_pixel_transform] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterfvEXT")] + [CLSCompliant(false)] public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_pixel_transform] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterfvEXT")] + [CLSCompliant(false)] public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_pixel_transform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_pixel_transform] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterivEXT")] + [CLSCompliant(false)] public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_pixel_transform] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterivEXT")] + [CLSCompliant(false)] public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_pixel_transform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute] T2[] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute] T2[,] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute] T2[,,] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute] ref T2 data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute] T2[] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute] T2[,] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute] T2[,,] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] + [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute] ref T2 data) where T2 : struct { throw new NotImplementedException(); } @@ -91979,18 +94086,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_vertex_array] [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glGetPointervEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_array] [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glGetPointervEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_array] [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glGetPointervEXT")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -92025,6 +94135,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92051,6 +94162,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92076,8 +94188,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92103,8 +94215,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92130,8 +94242,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92157,8 +94269,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92180,6 +94292,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92201,6 +94314,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92221,8 +94335,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92243,8 +94357,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92265,8 +94379,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -92287,8 +94401,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_timer_query] @@ -92310,6 +94424,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_timer_query] @@ -92331,6 +94446,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_timer_query] @@ -92351,8 +94467,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_timer_query] @@ -92373,8 +94489,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_timer_query] @@ -92395,8 +94511,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: EXT_timer_query] @@ -92417,8 +94533,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: EXT_timer_query] @@ -92439,8 +94555,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: EXT_timer_query] @@ -92461,8 +94577,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: EXT_timer_query] @@ -92483,8 +94599,8 @@ namespace OpenTK.Graphics.OpenGL /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -92506,6 +94622,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivEXT")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -92527,6 +94644,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivEXT")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -92547,8 +94665,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the value of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_convolution] @@ -92621,6 +94739,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetSeparableFilterEXT")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] row, [InAttribute, OutAttribute] T4[] column, [InAttribute, OutAttribute] T5[] span) where T3 : struct where T4 : struct @@ -92661,6 +94780,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetSeparableFilterEXT")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] row, [InAttribute, OutAttribute] T4[,] column, [InAttribute, OutAttribute] T5[,] span) where T3 : struct where T4 : struct @@ -92701,6 +94821,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetSeparableFilterEXT")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct where T4 : struct @@ -92749,246 +94870,263 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_texture_integer] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIivEXT")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIivEXT")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] + [CLSCompliant(false)] public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] + [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] + [CLSCompliant(false)] public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] + [CLSCompliant(false)] public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] + [CLSCompliant(false)] public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] + [CLSCompliant(false)] public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] + [CLSCompliant(false)] public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] + [CLSCompliant(false)] public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] + [CLSCompliant(false)] public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] + [CLSCompliant(false)] public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] + [CLSCompliant(false)] public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] + [CLSCompliant(false)] public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] + [CLSCompliant(false)] public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] + [CLSCompliant(false)] public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] + [CLSCompliant(false)] public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] + [CLSCompliant(false)] public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] + [CLSCompliant(false)] public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] + [CLSCompliant(false)] public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] + [CLSCompliant(false)] public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] + [CLSCompliant(false)] public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] + [CLSCompliant(false)] public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] + [CLSCompliant(false)] public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] + [CLSCompliant(false)] public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] + [CLSCompliant(false)] public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] + [CLSCompliant(false)] public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -93030,6 +95168,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -93071,6 +95210,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -93111,8 +95251,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -93153,8 +95293,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -93195,8 +95335,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -93237,8 +95377,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -93279,8 +95419,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -93321,26 +95461,28 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: EXT_bindable_uniform] [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformBufferSizeEXT")] + [CLSCompliant(false)] public static Int32 GetUniformBufferSize(Int32 program, Int32 location) { throw new NotImplementedException(); } /// [requires: EXT_bindable_uniform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformBufferSizeEXT")] + [CLSCompliant(false)] public static Int32 GetUniformBufferSize(UInt32 program, Int32 location) { throw new NotImplementedException(); } /// [requires: EXT_bindable_uniform] [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformOffsetEXT")] + [CLSCompliant(false)] public static IntPtr GetUniformOffset(Int32 program, Int32 location) { throw new NotImplementedException(); } /// [requires: EXT_bindable_uniform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformOffsetEXT")] + [CLSCompliant(false)] public static IntPtr GetUniformOffset(UInt32 program, Int32 location) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -93362,6 +95504,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -93383,6 +95526,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -93403,8 +95547,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -93425,8 +95569,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -93447,8 +95591,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -93469,388 +95613,416 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] + [CLSCompliant(false)] public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] + [CLSCompliant(false)] public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] + [CLSCompliant(false)] public static unsafe void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] + [CLSCompliant(false)] public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] + [CLSCompliant(false)] public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] + [CLSCompliant(false)] public static unsafe void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] + [CLSCompliant(false)] public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] + [CLSCompliant(false)] public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] + [CLSCompliant(false)] public static unsafe void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] + [CLSCompliant(false)] public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] + [CLSCompliant(false)] public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] + [CLSCompliant(false)] public static unsafe void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] + [CLSCompliant(false)] public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] + [CLSCompliant(false)] public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] + [CLSCompliant(false)] public static unsafe void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] + [CLSCompliant(false)] public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] + [CLSCompliant(false)] public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] + [CLSCompliant(false)] public static unsafe void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute] T2[] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute] T2[,] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute] T2[,,] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute] ref T2 data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute] T2[] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute] T2[,] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute] T2[,,] data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] + [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute] ref T2 data) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] + [CLSCompliant(false)] public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] + [CLSCompliant(false)] public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] + [CLSCompliant(false)] public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[] param) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[,] param) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[,,] param) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T2 param) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[] param) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[,] param) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T2[,,] param) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] + [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T2 param) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] + [CLSCompliant(false)] public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -93908,11 +96080,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_x11_sync_object] [AutoGenerated(Category = "EXT_x11_sync_object", Version = "", EntryPoint = "glImportSyncEXT")] + [CLSCompliant(false)] public static IntPtr ImportSync(OpenTK.Graphics.OpenGL.ExtX11SyncObject external_sync_type, IntPtr external_sync, Int32 flags) { throw new NotImplementedException(); } /// [requires: EXT_x11_sync_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_x11_sync_object", Version = "", EntryPoint = "glImportSyncEXT")] + [CLSCompliant(false)] public static IntPtr ImportSync(OpenTK.Graphics.OpenGL.ExtX11SyncObject external_sync_type, IntPtr external_sync, UInt32 flags) { throw new NotImplementedException(); } /// [requires: EXT_index_func] @@ -93963,6 +96136,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glIndexPointerEXT")] + [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -93986,6 +96160,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glIndexPointerEXT")] + [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -94009,6 +96184,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glIndexPointerEXT")] + [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -94038,11 +96214,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glInsertComponentEXT")] + [CLSCompliant(false)] public static void InsertComponent(Int32 res, Int32 src, Int32 num) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glInsertComponentEXT")] + [CLSCompliant(false)] public static void InsertComponent(UInt32 res, UInt32 src, UInt32 num) { throw new NotImplementedException(); } /// [requires: EXT_debug_marker] @@ -94052,21 +96229,23 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use IndexedEnableCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] + [CLSCompliant(false)] public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [Obsolete("Use IndexedEnableCap overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] + [CLSCompliant(false)] public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] + [CLSCompliant(false)] public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] + [CLSCompliant(false)] public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -94078,6 +96257,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferEXT")] + [CLSCompliant(false)] public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -94088,8 +96268,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a framebuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferEXT")] + [CLSCompliant(false)] public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -94101,6 +96281,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] + [CLSCompliant(false)] public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -94111,8 +96292,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a program pipeline object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] + [CLSCompliant(false)] public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -94124,6 +96305,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferEXT")] + [CLSCompliant(false)] public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_framebuffer_object] @@ -94134,8 +96316,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a renderbuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferEXT")] + [CLSCompliant(false)] public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -94147,6 +96329,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glIsTextureEXT")] + [CLSCompliant(false)] public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -94157,26 +96340,28 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glIsTextureEXT")] + [CLSCompliant(false)] public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glIsVariantEnabledEXT")] + [CLSCompliant(false)] public static bool IsVariantEnabled(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glIsVariantEnabledEXT")] + [CLSCompliant(false)] public static bool IsVariantEnabled(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] + [CLSCompliant(false)] public static void LabelObject(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: EXT_debug_label] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] + [CLSCompliant(false)] public static void LabelObject(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: EXT_compiled_vertex_array] @@ -94185,20 +96370,22 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] + [CLSCompliant(false)] public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess access) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] + [CLSCompliant(false)] public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess access) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] + [CLSCompliant(false)] public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -94207,28 +96394,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, Double[] m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, ref Double m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, Double* m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, Single[] m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, ref Single m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, Single* m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -94237,80 +96428,92 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, Double[] m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, ref Double m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, Double* m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, Single[] m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, ref Single m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, Single* m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, Double[] m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, ref Double m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, Double* m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, Single[] m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, ref Single m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, Single* m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, Double[] m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, ref Double m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, Double* m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, Single[] m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, ref Single m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, Single* m) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -94358,6 +96561,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glMemoryBarrierEXT")] + [CLSCompliant(false)] public static void MemoryBarrier(Int32 barriers) { throw new NotImplementedException(); } /// [requires: EXT_shader_image_load_store] @@ -94368,8 +96572,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the barriers to insert. Must be a bitwise combination of GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT, GL_ELEMENT_ARRAY_BARRIER_BIT, GL_UNIFORM_BARRIER_BIT, GL_TEXTURE_FETCH_BARRIER_BIT, GL_SHADER_IMAGE_ACCESS_BARRIER_BIT, GL_COMMAND_BARRIER_BIT, GL_PIXEL_BUFFER_BARRIER_BIT, GL_TEXTURE_UPDATE_BARRIER_BIT, GL_BUFFER_UPDATE_BARRIER_BIT, GL_FRAMEBUFFER_BARRIER_BIT, GL_TRANSFORM_FEEDBACK_BARRIER_BIT, GL_ATOMIC_COUNTER_BARRIER_BIT, or GL_SHADER_STORAGE_BARRIER_BIT. If the special value GL_ALL_BARRIER_BITS is specified, all supported barriers will be inserted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glMemoryBarrierEXT")] + [CLSCompliant(false)] public static void MemoryBarrier(UInt32 barriers) { throw new NotImplementedException(); } /// [requires: EXT_histogram] @@ -94440,6 +96644,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -94467,6 +96672,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -94493,8 +96699,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -94521,6 +96727,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] first, Int32[] count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -94547,6 +96754,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 first, ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -94572,8 +96780,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the first and count /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* first, Int32* count, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -94606,6 +96814,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -94638,6 +96847,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -94672,6 +96882,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -94706,6 +96917,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -94740,6 +96952,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -94774,6 +96987,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -94806,6 +97020,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -94840,6 +97055,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -94874,6 +97090,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -94908,6 +97125,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -94941,8 +97159,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -94974,8 +97192,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95009,8 +97227,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95044,8 +97262,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95079,8 +97297,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95114,6 +97332,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -95145,6 +97364,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95178,6 +97398,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95211,6 +97432,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95244,6 +97466,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95277,6 +97500,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -95308,6 +97532,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95341,6 +97566,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95374,6 +97600,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95407,6 +97634,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95439,8 +97667,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } /// [requires: EXT_multi_draw_arrays] @@ -95471,8 +97699,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95505,8 +97733,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95539,8 +97767,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } @@ -95573,19 +97801,20 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] + [CLSCompliant(false)] public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] + [CLSCompliant(false)] public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -95594,18 +97823,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] + [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] + [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] + [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -95622,11 +97854,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfvEXT")] + [CLSCompliant(false)] public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfvEXT")] + [CLSCompliant(false)] public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -95635,11 +97868,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvivEXT")] + [CLSCompliant(false)] public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvivEXT")] + [CLSCompliant(false)] public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -95648,15 +97882,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] + [CLSCompliant(false)] public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] + [CLSCompliant(false)] public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, ref Double @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] + [CLSCompliant(false)] public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -95665,11 +97901,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfvEXT")] + [CLSCompliant(false)] public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfvEXT")] + [CLSCompliant(false)] public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -95678,11 +97915,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenivEXT")] + [CLSCompliant(false)] public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenivEXT")] + [CLSCompliant(false)] public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -95693,6 +97931,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] + [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -95700,6 +97939,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] + [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -95707,6 +97947,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] + [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -95724,18 +97965,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] + [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] + [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] + [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -95754,6 +97998,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] + [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -95761,6 +98006,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] + [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -95768,6 +98014,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] + [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -95785,18 +98032,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] + [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] + [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] + [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -95815,6 +98065,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] + [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -95822,6 +98073,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] + [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -95829,6 +98081,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] + [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -95846,18 +98099,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] + [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] + [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] + [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -95874,11 +98130,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfvEXT")] + [CLSCompliant(false)] public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -95887,48 +98144,52 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] + [CLSCompliant(false)] public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] + [CLSCompliant(false)] public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] + [CLSCompliant(false)] public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] + [CLSCompliant(false)] public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] + [CLSCompliant(false)] public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterivEXT")] + [CLSCompliant(false)] public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterivEXT")] + [CLSCompliant(false)] public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")] + [CLSCompliant(false)] public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")] + [CLSCompliant(false)] public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -95937,18 +98198,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] + [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[] pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] + [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[,] pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] + [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[,,] pixels) where T7 : struct { throw new NotImplementedException(); } @@ -95965,18 +98229,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] + [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] + [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] + [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -95993,18 +98260,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] + [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] + [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] + [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct { throw new NotImplementedException(); } @@ -96017,556 +98287,601 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] + [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, IntPtr data, Int32 flags) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, Int32 flags) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, Int32 flags) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, Int32 flags) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, Int32 flags) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, IntPtr data, UInt32 flags) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, UInt32 flags) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, UInt32 flags) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, UInt32 flags) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] + [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, UInt32 flags) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] + [CLSCompliant(false)] public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] + [CLSCompliant(false)] public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] + [CLSCompliant(false)] public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")] + [CLSCompliant(false)] public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")] + [CLSCompliant(false)] public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTexture1D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTexture1D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTexture2D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTexture2D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTexture3D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTexture3D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTextureFace(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTextureFace(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")] + [CLSCompliant(false)] public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, ref Double @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Double[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, ref Double @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Double* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, ref Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, ref Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4iEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4iEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uiEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, ref Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, ref Single @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] + [CLSCompliant(false)] public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] + [CLSCompliant(false)] public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, IntPtr @string) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute] T4[] @string) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute] T4[,] @string) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute] T4[,,] @string) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute] ref T4 @string) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, IntPtr @string) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute] T4[] @string) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute] T4[,] @string) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute] T4[,,] @string) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] + [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute] ref T4 @string) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] + [CLSCompliant(false)] public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] + [CLSCompliant(false)] public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] + [CLSCompliant(false)] public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] + [CLSCompliant(false)] public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] + [CLSCompliant(false)] public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] + [CLSCompliant(false)] public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_vertex_array] @@ -96609,6 +98924,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glNormalPointerEXT")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -96632,6 +98948,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glNormalPointerEXT")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -96655,6 +98972,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glNormalPointerEXT")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -96687,8 +99005,8 @@ namespace OpenTK.Graphics.OpenGL public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Single param) { throw new NotImplementedException(); } /// [requires: EXT_pixel_transform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glPixelTransformParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_pixel_transform] @@ -96696,8 +99014,8 @@ namespace OpenTK.Graphics.OpenGL public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Int32 param) { throw new NotImplementedException(); } /// [requires: EXT_pixel_transform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glPixelTransformParameterivEXT")] + [CLSCompliant(false)] public static unsafe void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_point_parameters] @@ -96740,6 +99058,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_point_parameters", Version = "", EntryPoint = "glPointParameterfvEXT")] + [CLSCompliant(false)] public static void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_point_parameters] @@ -96760,8 +99079,8 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_point_parameters", Version = "", EntryPoint = "glPointParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_polygon_offset] @@ -96803,6 +99122,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] + [CLSCompliant(false)] public static void PrioritizeTextures(Int32 n, Int32[] textures, Single[] priorities) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -96824,6 +99144,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] + [CLSCompliant(false)] public static void PrioritizeTextures(Int32 n, ref Int32 textures, ref Single priorities) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -96844,8 +99165,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array containing the texture priorities. A priority given in an element of priorities applies to the texture named by the corresponding element of textures. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] + [CLSCompliant(false)] public static unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single* priorities) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -96866,8 +99187,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array containing the texture priorities. A priority given in an element of priorities applies to the texture named by the corresponding element of textures. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] + [CLSCompliant(false)] public static void PrioritizeTextures(Int32 n, UInt32[] textures, Single[] priorities) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -96888,8 +99209,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array containing the texture priorities. A priority given in an element of priorities applies to the texture named by the corresponding element of textures. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] + [CLSCompliant(false)] public static void PrioritizeTextures(Int32 n, ref UInt32 textures, ref Single priorities) { throw new NotImplementedException(); } /// [requires: EXT_texture_object] @@ -96910,64 +99231,68 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array containing the texture priorities. A priority given in an element of priorities applies to the texture named by the corresponding element of textures. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] + [CLSCompliant(false)] public static unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] + [CLSCompliant(false)] public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] + [CLSCompliant(false)] public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, ref Single @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] + [CLSCompliant(false)] public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] + [CLSCompliant(false)] public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, ref Single @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, ref Single @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, ref Single @params) { throw new NotImplementedException(); } /// [requires: EXT_gpu_program_parameters] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_geometry_shader4|EXT_separate_shader_objects] @@ -96989,6 +99314,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_geometry_shader4|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_geometry_shader4|EXT_separate_shader_objects] @@ -97009,8 +99335,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_geometry_shader4|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -97050,6 +99376,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Double x) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -97088,8 +99415,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Double x) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -97129,6 +99456,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -97168,6 +99496,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -97206,8 +99535,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -97246,8 +99575,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -97286,8 +99615,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -97326,8 +99655,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97367,6 +99696,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97405,8 +99735,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97446,6 +99776,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97485,6 +99816,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97523,8 +99855,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97563,8 +99895,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97603,8 +99935,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97643,8 +99975,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97684,6 +100016,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97722,8 +100055,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97763,6 +100096,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97802,6 +100136,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97840,8 +100175,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97880,8 +100215,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97920,8 +100255,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -97960,8 +100295,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98000,8 +100335,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98040,8 +100375,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98080,8 +100415,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98120,8 +100455,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -98161,6 +100496,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Double x, Double y) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -98199,8 +100535,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Double x, Double y) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -98240,6 +100576,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -98279,6 +100616,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -98317,8 +100655,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -98357,8 +100695,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -98397,8 +100735,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -98437,8 +100775,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98478,6 +100816,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98516,8 +100855,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98557,6 +100896,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98596,6 +100936,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98634,8 +100975,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98674,8 +101015,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98714,8 +101055,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98754,8 +101095,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98795,6 +101136,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98833,8 +101175,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98874,6 +101216,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98912,8 +101255,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98952,8 +101295,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -98992,8 +101335,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99032,8 +101375,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99072,8 +101415,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99112,8 +101455,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99152,8 +101495,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -99193,6 +101536,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -99231,8 +101575,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -99272,6 +101616,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -99311,6 +101656,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -99349,8 +101695,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -99389,8 +101735,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -99429,8 +101775,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -99469,8 +101815,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99510,6 +101856,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99548,8 +101895,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99589,6 +101936,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99628,6 +101976,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99666,8 +102015,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99706,8 +102055,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99746,8 +102095,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99786,8 +102135,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99827,6 +102176,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99865,8 +102215,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99906,6 +102256,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99945,6 +102296,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -99983,8 +102335,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100023,8 +102375,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100063,8 +102415,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100103,8 +102455,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100143,8 +102495,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100183,8 +102535,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100223,8 +102575,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100263,8 +102615,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -100304,6 +102656,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -100342,8 +102695,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -100383,6 +102736,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -100422,6 +102776,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -100460,8 +102815,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -100500,8 +102855,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -100540,8 +102895,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] @@ -100580,8 +102935,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100621,6 +102976,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100659,8 +103015,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100700,6 +103056,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100739,6 +103096,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100777,8 +103135,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100817,8 +103175,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100857,8 +103215,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100897,8 +103255,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100938,6 +103296,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -100976,8 +103335,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101017,6 +103376,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101056,6 +103416,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101094,8 +103455,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101134,8 +103495,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101174,8 +103535,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101214,8 +103575,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101254,8 +103615,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uiEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101294,8 +103655,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101334,8 +103695,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] @@ -101374,512 +103735,548 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: EXT_provoking_vertex] @@ -102052,8 +104449,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(SByte red, SByte green, SByte blue) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102064,8 +104461,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(SByte[] v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102076,8 +104473,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(ref SByte v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102088,8 +104485,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bvEXT")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(SByte* v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102112,6 +104509,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(Double[] v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102123,6 +104521,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Double v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102133,8 +104532,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dvEXT")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Double* v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102157,6 +104556,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(Single[] v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102168,6 +104568,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Single v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102178,8 +104579,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fvEXT")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Single* v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102202,6 +104603,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ivEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(Int32[] v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102213,6 +104615,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ivEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102223,8 +104626,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ivEXT")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Int32* v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102247,6 +104650,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3svEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(Int16[] v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102258,6 +104662,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3svEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102268,8 +104673,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3svEXT")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Int16* v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102292,6 +104697,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(Byte[] v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102303,6 +104709,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(ref Byte v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102313,8 +104720,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubvEXT")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(Byte* v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102325,8 +104732,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uiEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102337,8 +104744,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uivEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(UInt32[] v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102349,8 +104756,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uivEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(ref UInt32 v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102361,8 +104768,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uivEXT")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(UInt32* v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102373,8 +104780,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102385,8 +104792,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(UInt16[] v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102397,8 +104804,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usvEXT")] + [CLSCompliant(false)] public static void SecondaryColor3(ref UInt16 v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102409,8 +104816,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usvEXT")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3(UInt16* v) { throw new NotImplementedException(); } /// [requires: EXT_secondary_color] @@ -102463,6 +104870,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColorPointerEXT")] + [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -102491,6 +104899,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColorPointerEXT")] + [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -102519,6 +104928,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColorPointerEXT")] + [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -102641,6 +105051,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[] column) where T6 : struct where T7 : struct @@ -102690,6 +105101,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] row, [InAttribute, OutAttribute] T7[,] column) where T6 : struct where T7 : struct @@ -102739,6 +105151,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct where T7 : struct @@ -102795,206 +105208,224 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, IntPtr addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[,] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[,,] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] ref T2 addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, IntPtr addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[,] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[,,] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] + [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] ref T2 addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, IntPtr addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[,] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[,,] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] ref T2 addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, IntPtr addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[,] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] T2[,,] addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] + [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute] ref T2 addr) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp1EXT")] + [CLSCompliant(false)] public static void ShaderOp1(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp1EXT")] + [CLSCompliant(false)] public static void ShaderOp1(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp2EXT")] + [CLSCompliant(false)] public static void ShaderOp2(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp2EXT")] + [CLSCompliant(false)] public static void ShaderOp2(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp3EXT")] + [CLSCompliant(false)] public static void ShaderOp3(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp3EXT")] + [CLSCompliant(false)] public static void ShaderOp3(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) { throw new NotImplementedException(); } /// [requires: EXT_stencil_clear_tag] [AutoGenerated(Category = "EXT_stencil_clear_tag", Version = "", EntryPoint = "glStencilClearTagEXT")] + [CLSCompliant(false)] public static void StencilClearTag(Int32 stencilTagBits, Int32 stencilClearTag) { throw new NotImplementedException(); } /// [requires: EXT_stencil_clear_tag] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_stencil_clear_tag", Version = "", EntryPoint = "glStencilClearTagEXT")] + [CLSCompliant(false)] public static void StencilClearTag(Int32 stencilTagBits, UInt32 stencilClearTag) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSwizzleEXT")] + [CLSCompliant(false)] public static void Swizzle(Int32 res, Int32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSwizzleEXT")] + [CLSCompliant(false)] public static void Swizzle(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bEXT")] + [CLSCompliant(false)] public static void Tangent3(Byte tx, Byte ty, Byte tz) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bEXT")] + [CLSCompliant(false)] public static void Tangent3(SByte tx, SByte ty, SByte tz) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] + [CLSCompliant(false)] public static void Tangent3(Byte[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] + [CLSCompliant(false)] public static void Tangent3(ref Byte v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] + [CLSCompliant(false)] public static unsafe void Tangent3(Byte* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] + [CLSCompliant(false)] public static void Tangent3(SByte[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] + [CLSCompliant(false)] public static void Tangent3(ref SByte v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] + [CLSCompliant(false)] public static unsafe void Tangent3(SByte* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -103003,15 +105434,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dvEXT")] + [CLSCompliant(false)] public static void Tangent3(Double[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dvEXT")] + [CLSCompliant(false)] public static void Tangent3(ref Double v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dvEXT")] + [CLSCompliant(false)] public static unsafe void Tangent3(Double* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -103020,15 +105453,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fvEXT")] + [CLSCompliant(false)] public static void Tangent3(Single[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fvEXT")] + [CLSCompliant(false)] public static void Tangent3(ref Single v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fvEXT")] + [CLSCompliant(false)] public static unsafe void Tangent3(Single* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -103037,15 +105472,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3ivEXT")] + [CLSCompliant(false)] public static void Tangent3(Int32[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3ivEXT")] + [CLSCompliant(false)] public static void Tangent3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3ivEXT")] + [CLSCompliant(false)] public static unsafe void Tangent3(Int32* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -103054,15 +105491,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3svEXT")] + [CLSCompliant(false)] public static void Tangent3(Int16[] v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3svEXT")] + [CLSCompliant(false)] public static void Tangent3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3svEXT")] + [CLSCompliant(false)] public static unsafe void Tangent3(Int16* v) { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] @@ -103071,18 +105510,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangentPointerEXT")] + [CLSCompliant(false)] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangentPointerEXT")] + [CLSCompliant(false)] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: EXT_coordinate_frame] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangentPointerEXT")] + [CLSCompliant(false)] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -103112,6 +105554,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_buffer_object", Version = "", EntryPoint = "glTexBufferEXT")] + [CLSCompliant(false)] public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, Int32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_texture_buffer_object] @@ -103132,8 +105575,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_buffer_object", Version = "", EntryPoint = "glTexBufferEXT")] + [CLSCompliant(false)] public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_vertex_array] @@ -103186,6 +105629,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glTexCoordPointerEXT")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -103214,6 +105658,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glTexCoordPointerEXT")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -103242,6 +105687,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glTexCoordPointerEXT")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -103384,6 +105830,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -103442,6 +105889,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -103500,6 +105948,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -103564,30 +106013,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_texture_integer] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIivEXT")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIivEXT")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIuivEXT")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIuivEXT")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_texture_integer] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIuivEXT")] + [CLSCompliant(false)] public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_subtexture] @@ -103670,6 +106121,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage1DEXT")] + [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -103713,6 +106165,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage1DEXT")] + [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -103756,6 +106209,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage1DEXT")] + [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -103903,6 +106357,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage2DEXT")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -103956,6 +106411,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage2DEXT")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -104009,6 +106465,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage2DEXT")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -104186,6 +106643,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexSubImage3DEXT")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -104249,6 +106707,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexSubImage3DEXT")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -104312,6 +106771,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexSubImage3DEXT")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -104381,30 +106841,34 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] + [CLSCompliant(false)] public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] + [CLSCompliant(false)] public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] + [CLSCompliant(false)] public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] + [CLSCompliant(false)] public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -104412,6 +106876,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -104419,6 +106884,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -104426,105 +106892,111 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] + [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct { throw new NotImplementedException(); } @@ -104532,11 +107004,13 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -104544,6 +107018,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -104551,6 +107026,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -104558,105 +107034,111 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] + [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct { throw new NotImplementedException(); } @@ -104664,11 +107146,13 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -104676,6 +107160,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -104683,6 +107168,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -104690,105 +107176,111 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T10 pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T10 pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T10 pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] + [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T10 pixels) where T10 : struct { throw new NotImplementedException(); } @@ -104807,345 +107299,373 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTexturePageCommitmentEXT")] + [CLSCompliant(false)] public static void TexturePageCommitment(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool resident) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTexturePageCommitmentEXT")] + [CLSCompliant(false)] public static void TexturePageCommitment(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool resident) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfEXT")] + [CLSCompliant(false)] public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfEXT")] + [CLSCompliant(false)] public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] + [CLSCompliant(false)] public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] + [CLSCompliant(false)] public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] + [CLSCompliant(false)] public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameteriEXT")] + [CLSCompliant(false)] public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameteriEXT")] + [CLSCompliant(false)] public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] + [CLSCompliant(false)] public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] + [CLSCompliant(false)] public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] + [CLSCompliant(false)] public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] + [CLSCompliant(false)] public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] + [CLSCompliant(false)] public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] + [CLSCompliant(false)] public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] + [CLSCompliant(false)] public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] + [CLSCompliant(false)] public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] + [CLSCompliant(false)] public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] + [CLSCompliant(false)] public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] + [CLSCompliant(false)] public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] + [CLSCompliant(false)] public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureRenderbufferEXT")] + [CLSCompliant(false)] public static void TextureRenderbuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureRenderbufferEXT")] + [CLSCompliant(false)] public static void TextureRenderbuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] + [CLSCompliant(false)] public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] + [CLSCompliant(false)] public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] + [CLSCompliant(false)] public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] + [CLSCompliant(false)] public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[] pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[,] pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[,,] pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T7 pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[] pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[,] pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T7[,,] pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] + [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T7 pixels) where T7 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] + [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] + [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct { throw new NotImplementedException(); } @@ -105174,6 +107694,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsEXT")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(Int32 program, Int32 count, String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: EXT_transform_feedback] @@ -105199,8 +107720,8 @@ namespace OpenTK.Graphics.OpenGL /// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsEXT")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(UInt32 program, Int32 count, String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105235,6 +107756,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uiEXT")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105268,8 +107790,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uiEXT")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105304,6 +107826,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105338,6 +107861,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105371,8 +107895,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105406,8 +107930,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105441,8 +107965,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105476,8 +108000,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105512,6 +108036,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uiEXT")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105545,8 +108070,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uiEXT")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105581,6 +108106,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105614,8 +108140,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105649,8 +108175,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105684,8 +108210,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105719,8 +108245,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105755,6 +108281,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uiEXT")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105788,8 +108315,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uiEXT")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105824,6 +108351,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105858,6 +108386,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105891,8 +108420,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105926,8 +108455,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105961,8 +108490,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -105996,8 +108525,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -106032,6 +108561,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uiEXT")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -106065,8 +108595,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uiEXT")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -106101,6 +108631,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -106135,6 +108666,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -106168,8 +108700,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -106203,8 +108735,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -106238,8 +108770,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: EXT_gpu_shader4] @@ -106273,17 +108805,18 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: EXT_bindable_uniform] [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glUniformBufferEXT")] + [CLSCompliant(false)] public static void UniformBuffer(Int32 program, Int32 location, Int32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_bindable_uniform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glUniformBufferEXT")] + [CLSCompliant(false)] public static void UniformBuffer(UInt32 program, Int32 location, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_compiled_vertex_array] @@ -106292,11 +108825,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glUnmapNamedBufferEXT")] + [CLSCompliant(false)] public static bool UnmapNamedBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glUnmapNamedBufferEXT")] + [CLSCompliant(false)] public static bool UnmapNamedBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -106318,6 +108852,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -106338,17 +108873,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object containing the shader executables to use in pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] + [CLSCompliant(false)] public static void UseShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, Int32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] + [CLSCompliant(false)] public static void UseShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, UInt32 program) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -106360,6 +108896,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_separate_shader_objects] @@ -106370,961 +108907,1029 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a program pipeline object to validate. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantbvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, SByte[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantbvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, ref SByte addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantbvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(UInt32 id, SByte* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, Double[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, ref Double addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(Int32 id, Double* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, Double[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, ref Double addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(UInt32 id, Double* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, Single[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, ref Single addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(Int32 id, Single* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, Single[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, ref Single addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(UInt32 id, Single* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, Int32[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, ref Int32 addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] + [CLSCompliant(false)] public static unsafe void Variant(Int32 id, Int32* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, Int32[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, ref Int32 addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] + [CLSCompliant(false)] public static unsafe void Variant(UInt32 id, Int32* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, IntPtr addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute] T3[] addr) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute] T3[,] addr) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute] T3[,,] addr) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute] ref T3 addr) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, IntPtr addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute] T3[] addr) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute] T3[,] addr) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute] T3[,,] addr) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] + [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute] ref T3 addr) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, Int16[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, ref Int16 addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(Int32 id, Int16* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, Int16[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, ref Int16 addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(UInt32 id, Int16* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, Byte[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] + [CLSCompliant(false)] public static void Variant(Int32 id, ref Byte addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(Int32 id, Byte* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, Byte[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, ref Byte addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(UInt32 id, Byte* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantuivEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, UInt32[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantuivEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, ref UInt32 addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantuivEXT")] + [CLSCompliant(false)] public static unsafe void Variant(UInt32 id, UInt32* addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantusvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, UInt16[] addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantusvEXT")] + [CLSCompliant(false)] public static void Variant(UInt32 id, ref UInt16 addr) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantusvEXT")] + [CLSCompliant(false)] public static unsafe void Variant(UInt32 id, UInt16* addr) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayBindVertexBufferEXT")] + [CLSCompliant(false)] public static void VertexArrayBindVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayBindVertexBufferEXT")] + [CLSCompliant(false)] public static void VertexArrayBindVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayColorOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayColorOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayEdgeFlagOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayEdgeFlagOffset(Int32 vaobj, Int32 buffer, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayEdgeFlagOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayEdgeFlagOffset(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayFogCoordOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayFogCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayFogCoordOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayFogCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayIndexOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayIndexOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayIndexOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayIndexOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayMultiTexCoordOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayMultiTexCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayMultiTexCoordOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayMultiTexCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayNormalOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayNormalOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayNormalOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayNormalOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArraySecondaryColorOffsetEXT")] + [CLSCompliant(false)] public static void VertexArraySecondaryColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArraySecondaryColorOffsetEXT")] + [CLSCompliant(false)] public static void VertexArraySecondaryColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayTexCoordOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayTexCoordOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayTexCoordOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayTexCoordOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribDivisor(Int32 vaobj, Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribDivisor(UInt32 vaobj, UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribFormatEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribFormatEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIFormatEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 relativeoffset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIFormatEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, UInt32 relativeoffset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLFormatEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 relativeoffset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLFormatEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, UInt32 relativeoffset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexAttribOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: EXT_direct_state_access] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexOffsetEXT")] + [CLSCompliant(false)] public static void VertexArrayVertexOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1iEXT")] + [CLSCompliant(false)] public static void VertexAttribI1(Int32 index, Int32 x) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1iEXT")] + [CLSCompliant(false)] public static void VertexAttribI1(UInt32 index, Int32 x) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1ivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI1(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1ivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI1(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1uiEXT")] + [CLSCompliant(false)] public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1uivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI1(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2iEXT")] + [CLSCompliant(false)] public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2iEXT")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI2(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI2(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI2(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI2(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uiEXT")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI2(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3iEXT")] + [CLSCompliant(false)] public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3iEXT")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI3(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI3(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI3(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI3(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uiEXT")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI3(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, SByte[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref SByte v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, SByte* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4iEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4iEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uiEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref UInt16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, UInt16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dEXT")] + [CLSCompliant(false)] public static void VertexAttribL1(Int32 index, Double x) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dEXT")] + [CLSCompliant(false)] public static void VertexAttribL1(UInt32 index, Double x) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dEXT")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dEXT")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribL2(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribL2(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dEXT")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dEXT")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribL3(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribL3(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dEXT")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dEXT")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribL4(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] + [CLSCompliant(false)] public static unsafe void VertexAttribL4(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_attrib_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } @@ -107379,6 +109984,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glVertexPointerEXT")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -107407,6 +110013,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glVertexPointerEXT")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -107435,6 +110042,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glVertexPointerEXT")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -107472,8 +110080,8 @@ namespace OpenTK.Graphics.OpenGL public static void VertexWeight(Single weight) { throw new NotImplementedException(); } /// [requires: EXT_vertex_weighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightfvEXT")] + [CLSCompliant(false)] public static unsafe void VertexWeight(Single* weight) { throw new NotImplementedException(); } /// [requires: EXT_vertex_weighting] @@ -107482,18 +110090,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_vertex_weighting] [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightPointerEXT")] + [CLSCompliant(false)] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_weighting] [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightPointerEXT")] + [CLSCompliant(false)] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer) where T3 : struct { throw new NotImplementedException(); } /// [requires: EXT_vertex_weighting] [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightPointerEXT")] + [CLSCompliant(false)] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer) where T3 : struct { throw new NotImplementedException(); } @@ -107506,11 +110117,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glWriteMaskEXT")] + [CLSCompliant(false)] public static void WriteMask(Int32 res, Int32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new NotImplementedException(); } /// [requires: EXT_vertex_shader] - [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glWriteMaskEXT")] + [CLSCompliant(false)] public static void WriteMask(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new NotImplementedException(); } } @@ -107527,18 +110139,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: GREMEDY_string_marker] [AutoGenerated(Category = "GREMEDY_string_marker", Version = "", EntryPoint = "glStringMarkerGREMEDY")] + [CLSCompliant(false)] public static void StringMarker(Int32 len, [InAttribute, OutAttribute] T1[] @string) where T1 : struct { throw new NotImplementedException(); } /// [requires: GREMEDY_string_marker] [AutoGenerated(Category = "GREMEDY_string_marker", Version = "", EntryPoint = "glStringMarkerGREMEDY")] + [CLSCompliant(false)] public static void StringMarker(Int32 len, [InAttribute, OutAttribute] T1[,] @string) where T1 : struct { throw new NotImplementedException(); } /// [requires: GREMEDY_string_marker] [AutoGenerated(Category = "GREMEDY_string_marker", Version = "", EntryPoint = "glStringMarkerGREMEDY")] + [CLSCompliant(false)] public static void StringMarker(Int32 len, [InAttribute, OutAttribute] T1[,,] @string) where T1 : struct { throw new NotImplementedException(); } @@ -107555,28 +110170,32 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: HP_image_transform] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterfvHP")] + [CLSCompliant(false)] public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: HP_image_transform] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterfvHP")] + [CLSCompliant(false)] public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: HP_image_transform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterfvHP")] + [CLSCompliant(false)] public static unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: HP_image_transform] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterivHP")] + [CLSCompliant(false)] public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: HP_image_transform] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterivHP")] + [CLSCompliant(false)] public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: HP_image_transform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterivHP")] + [CLSCompliant(false)] public static unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: HP_image_transform] @@ -107585,11 +110204,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: HP_image_transform] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterfvHP")] + [CLSCompliant(false)] public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: HP_image_transform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterfvHP")] + [CLSCompliant(false)] public static unsafe void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Single* @params) { throw new NotImplementedException(); } /// [requires: HP_image_transform] @@ -107598,11 +110218,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: HP_image_transform] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterivHP")] + [CLSCompliant(false)] public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: HP_image_transform] - [System.CLSCompliant(false)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterivHP")] + [CLSCompliant(false)] public static unsafe void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Int32* @params) { throw new NotImplementedException(); } } @@ -107615,18 +110236,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glColorPointerListIBM")] + [CLSCompliant(false)] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glColorPointerListIBM")] + [CLSCompliant(false)] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glColorPointerListIBM")] + [CLSCompliant(false)] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } @@ -107638,18 +110262,18 @@ namespace OpenTK.Graphics.OpenGL { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glEdgeFlagPointerListIBM")] + [CLSCompliant(false)] public static unsafe void EdgeFlagPointerList(Int32 stride, bool*[] pointer, Int32 ptrstride) { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glEdgeFlagPointerListIBM")] + [CLSCompliant(false)] public static unsafe void EdgeFlagPointerList(Int32 stride, ref bool* pointer, Int32 ptrstride) { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glEdgeFlagPointerListIBM")] + [CLSCompliant(false)] public static unsafe void EdgeFlagPointerList(Int32 stride, bool** pointer, Int32 ptrstride) { throw new NotImplementedException(); } /// [requires: IBM_static_data] @@ -107662,18 +110286,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] + [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] + [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] + [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } @@ -107692,6 +110319,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [Obsolete("Use FogPointerType overload instead")] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] + [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } @@ -107699,6 +110327,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [Obsolete("Use FogPointerType overload instead")] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] + [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } @@ -107706,6 +110335,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [Obsolete("Use FogPointerType overload instead")] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] + [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } @@ -107723,18 +110353,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glIndexPointerListIBM")] + [CLSCompliant(false)] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glIndexPointerListIBM")] + [CLSCompliant(false)] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glIndexPointerListIBM")] + [CLSCompliant(false)] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } @@ -107747,102 +110380,114 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawArraysIBM")] + [CLSCompliant(false)] public static void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawArraysIBM")] + [CLSCompliant(false)] public static void MultiModeDrawArrays(ref OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawArraysIBM")] + [CLSCompliant(false)] public static unsafe void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_multimode_draw_arrays] - [System.CLSCompliant(false)] [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] + [CLSCompliant(false)] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } @@ -107853,18 +110498,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glNormalPointerListIBM")] + [CLSCompliant(false)] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glNormalPointerListIBM")] + [CLSCompliant(false)] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glNormalPointerListIBM")] + [CLSCompliant(false)] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer, Int32 ptrstride) where T2 : struct { throw new NotImplementedException(); } @@ -107881,18 +110529,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glSecondaryColorPointerListIBM")] + [CLSCompliant(false)] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glSecondaryColorPointerListIBM")] + [CLSCompliant(false)] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glSecondaryColorPointerListIBM")] + [CLSCompliant(false)] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } @@ -107909,18 +110560,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glTexCoordPointerListIBM")] + [CLSCompliant(false)] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glTexCoordPointerListIBM")] + [CLSCompliant(false)] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glTexCoordPointerListIBM")] + [CLSCompliant(false)] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } @@ -107937,18 +110591,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glVertexPointerListIBM")] + [CLSCompliant(false)] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glVertexPointerListIBM")] + [CLSCompliant(false)] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } /// [requires: IBM_vertex_array_lists] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glVertexPointerListIBM")] + [CLSCompliant(false)] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer, Int32 ptrstride) where T3 : struct { throw new NotImplementedException(); } @@ -108080,6 +110737,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glColorPointervINTEL")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -108108,6 +110766,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glColorPointervINTEL")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -108136,6 +110795,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glColorPointervINTEL")] + [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -108170,21 +110830,22 @@ namespace OpenTK.Graphics.OpenGL /// [requires: INTEL_map_texture] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] + [CLSCompliant(false)] public static IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute] out Int32 stride, [OutAttribute] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new NotImplementedException(); } /// [requires: INTEL_map_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] + [CLSCompliant(false)] public static unsafe IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute] Int32* stride, [OutAttribute] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new NotImplementedException(); } /// [requires: INTEL_map_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] + [CLSCompliant(false)] public static IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute] out Int32 stride, [OutAttribute] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new NotImplementedException(); } /// [requires: INTEL_map_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] + [CLSCompliant(false)] public static unsafe IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute] Int32* stride, [OutAttribute] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new NotImplementedException(); } /// [requires: INTEL_parallel_arrays] @@ -108227,6 +110888,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glNormalPointervINTEL")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute] T1[] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -108250,6 +110912,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glNormalPointervINTEL")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute] T1[,] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -108273,6 +110936,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glNormalPointervINTEL")] + [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute] T1[,,] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -108302,11 +110966,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: INTEL_map_texture] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glSyncTextureINTEL")] + [CLSCompliant(false)] public static void SyncTexture(Int32 texture) { throw new NotImplementedException(); } /// [requires: INTEL_map_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glSyncTextureINTEL")] + [CLSCompliant(false)] public static void SyncTexture(UInt32 texture) { throw new NotImplementedException(); } /// [requires: INTEL_parallel_arrays] @@ -108359,6 +111024,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glTexCoordPointervINTEL")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -108387,6 +111053,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glTexCoordPointervINTEL")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -108415,6 +111082,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glTexCoordPointervINTEL")] + [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -108449,11 +111117,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: INTEL_map_texture] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glUnmapTexture2DINTEL")] + [CLSCompliant(false)] public static void UnmapTexture2D(Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: INTEL_map_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glUnmapTexture2DINTEL")] + [CLSCompliant(false)] public static void UnmapTexture2D(UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: INTEL_parallel_arrays] @@ -108506,6 +111175,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glVertexPointervINTEL")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -108534,6 +111204,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glVertexPointervINTEL")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -108562,6 +111233,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glVertexPointervINTEL")] + [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -108628,6 +111300,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -108646,6 +111319,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -108664,6 +111338,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -108720,6 +111395,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -108756,6 +111432,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -108791,8 +111468,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -108828,8 +111505,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -108865,8 +111542,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -108902,8 +111579,8 @@ namespace OpenTK.Graphics.OpenGL /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -108940,6 +111617,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, Int32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -108975,8 +111653,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, UInt32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109023,6 +111701,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109069,6 +111748,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109114,8 +111794,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109161,8 +111841,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109208,8 +111888,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109255,8 +111935,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109288,6 +111968,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109319,6 +112000,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109349,8 +112031,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109381,8 +112063,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109413,8 +112095,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109445,8 +112127,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109473,6 +112155,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109499,6 +112182,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109524,8 +112208,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109552,6 +112236,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109580,6 +112265,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109607,8 +112293,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109637,6 +112323,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109665,6 +112352,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109692,8 +112380,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109722,6 +112410,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109750,6 +112439,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109777,8 +112467,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109807,6 +112497,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109835,6 +112526,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109862,8 +112554,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -109874,18 +112566,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -109920,6 +112615,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109945,8 +112641,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string containing the label to assign to the object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -109989,6 +112685,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -110012,6 +112709,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -110035,6 +112733,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -110092,6 +112791,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -110117,8 +112817,8 @@ namespace OpenTK.Graphics.OpenGL /// The a string containing the message to be sent to the debug output stream. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } } @@ -110149,6 +112849,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dvMESA")] + [CLSCompliant(false)] public static void WindowPos2(Double[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110160,6 +112861,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dvMESA")] + [CLSCompliant(false)] public static void WindowPos2(ref Double v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110170,8 +112872,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dvMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Double* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110194,6 +112896,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fvMESA")] + [CLSCompliant(false)] public static void WindowPos2(Single[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110205,6 +112908,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fvMESA")] + [CLSCompliant(false)] public static void WindowPos2(ref Single v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110215,8 +112919,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fvMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Single* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110239,6 +112943,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2ivMESA")] + [CLSCompliant(false)] public static void WindowPos2(Int32[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110250,6 +112955,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2ivMESA")] + [CLSCompliant(false)] public static void WindowPos2(ref Int32 v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110260,8 +112966,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2ivMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Int32* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110284,6 +112990,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2svMESA")] + [CLSCompliant(false)] public static void WindowPos2(Int16[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110295,6 +113002,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2svMESA")] + [CLSCompliant(false)] public static void WindowPos2(ref Int16 v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110305,8 +113013,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2svMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos2(Int16* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110329,6 +113037,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dvMESA")] + [CLSCompliant(false)] public static void WindowPos3(Double[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110340,6 +113049,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dvMESA")] + [CLSCompliant(false)] public static void WindowPos3(ref Double v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110350,8 +113060,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dvMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Double* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110374,6 +113084,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fvMESA")] + [CLSCompliant(false)] public static void WindowPos3(Single[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110385,6 +113096,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fvMESA")] + [CLSCompliant(false)] public static void WindowPos3(ref Single v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110395,8 +113107,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fvMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Single* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110419,6 +113131,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3ivMESA")] + [CLSCompliant(false)] public static void WindowPos3(Int32[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110430,6 +113143,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3ivMESA")] + [CLSCompliant(false)] public static void WindowPos3(ref Int32 v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110440,8 +113154,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3ivMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Int32* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110464,6 +113178,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3svMESA")] + [CLSCompliant(false)] public static void WindowPos3(Int16[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110475,6 +113190,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3svMESA")] + [CLSCompliant(false)] public static void WindowPos3(ref Int16 v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110485,8 +113201,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3svMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos3(Int16* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110509,6 +113225,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dvMESA")] + [CLSCompliant(false)] public static void WindowPos4(Double[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110520,6 +113237,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dvMESA")] + [CLSCompliant(false)] public static void WindowPos4(ref Double v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110530,8 +113248,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dvMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos4(Double* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110554,6 +113272,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fvMESA")] + [CLSCompliant(false)] public static void WindowPos4(Single[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110565,6 +113284,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fvMESA")] + [CLSCompliant(false)] public static void WindowPos4(ref Single v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110575,8 +113295,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fvMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos4(Single* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110599,6 +113319,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4ivMESA")] + [CLSCompliant(false)] public static void WindowPos4(Int32[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110610,6 +113331,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4ivMESA")] + [CLSCompliant(false)] public static void WindowPos4(ref Int32 v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110620,8 +113342,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4ivMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos4(Int32* v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110644,6 +113366,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4svMESA")] + [CLSCompliant(false)] public static void WindowPos4(Int16[] v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110655,6 +113378,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4svMESA")] + [CLSCompliant(false)] public static void WindowPos4(ref Int16 v) { throw new NotImplementedException(); } /// [requires: MESA_window_pos] @@ -110665,8 +113389,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4svMESA")] + [CLSCompliant(false)] public static unsafe void WindowPos4(Int16* v) { throw new NotImplementedException(); } } @@ -110675,39 +113399,42 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glActiveVaryingNV")] + [CLSCompliant(false)] public static void ActiveVarying(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glActiveVaryingNV")] + [CLSCompliant(false)] public static void ActiveVarying(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] + [CLSCompliant(false)] public static bool AreProgramsResident(Int32 n, Int32[] programs, [OutAttribute] bool[] residences) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] + [CLSCompliant(false)] public static bool AreProgramsResident(Int32 n, ref Int32 programs, [OutAttribute] out bool residences) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] + [CLSCompliant(false)] public static unsafe bool AreProgramsResident(Int32 n, Int32* programs, [OutAttribute] bool* residences) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] + [CLSCompliant(false)] public static bool AreProgramsResident(Int32 n, UInt32[] programs, [OutAttribute] bool[] residences) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] + [CLSCompliant(false)] public static bool AreProgramsResident(Int32 n, ref UInt32 programs, [OutAttribute] out bool residences) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] + [CLSCompliant(false)] public static unsafe bool AreProgramsResident(Int32 n, UInt32* programs, [OutAttribute] bool* residences) { throw new NotImplementedException(); } /// [requires: NV_conditional_render] @@ -110724,6 +113451,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] + [CLSCompliant(false)] public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new NotImplementedException(); } /// [requires: NV_conditional_render] @@ -110739,17 +113467,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] + [CLSCompliant(false)] public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glBeginOcclusionQueryNV")] + [CLSCompliant(false)] public static void BeginOcclusionQuery(Int32 id) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glBeginOcclusionQueryNV")] + [CLSCompliant(false)] public static void BeginOcclusionQuery(UInt32 id) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -110765,11 +113494,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBeginVideoCaptureNV")] + [CLSCompliant(false)] public static void BeginVideoCapture(Int32 video_capture_slot) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBeginVideoCaptureNV")] + [CLSCompliant(false)] public static void BeginVideoCapture(UInt32 video_capture_slot) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -110791,6 +113521,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseNV")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -110811,17 +113542,18 @@ namespace OpenTK.Graphics.OpenGL /// The name of a buffer object to bind to the specified binding point. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseNV")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetNV")] + [CLSCompliant(false)] public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetNV")] + [CLSCompliant(false)] public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -110853,6 +113585,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -110883,17 +113616,18 @@ namespace OpenTK.Graphics.OpenGL /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glBindProgramNV")] + [CLSCompliant(false)] public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glBindProgramNV")] + [CLSCompliant(false)] public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -110910,6 +113644,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 id) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -110925,8 +113660,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 id) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -110944,6 +113679,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, Int32 id) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -110960,26 +113696,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use BufferTargetArb overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, UInt32 id) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBindVideoCaptureStreamBufferNV")] + [CLSCompliant(false)] public static void BindVideoCaptureStreamBuffer(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, IntPtr offset) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBindVideoCaptureStreamBufferNV")] + [CLSCompliant(false)] public static void BindVideoCaptureStreamBuffer(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, IntPtr offset) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBindVideoCaptureStreamTextureNV")] + [CLSCompliant(false)] public static void BindVideoCaptureStreamTexture(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, OpenTK.Graphics.OpenGL.NvVideoCapture target, Int32 texture) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBindVideoCaptureStreamTextureNV")] + [CLSCompliant(false)] public static void BindVideoCaptureStreamTexture(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, OpenTK.Graphics.OpenGL.NvVideoCapture target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: NV_blend_equation_advanced] @@ -110992,11 +113730,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_buffer_unified_memory] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] + [CLSCompliant(false)] public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, Int32 index, Int64 address, IntPtr length) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] + [CLSCompliant(false)] public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, UInt32 index, UInt64 address, IntPtr length) { throw new NotImplementedException(); } /// [requires: NV_depth_buffer_float] @@ -111016,15 +113755,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hvNV")] + [CLSCompliant(false)] public static void Color3h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hvNV")] + [CLSCompliant(false)] public static void Color3h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hvNV")] + [CLSCompliant(false)] public static unsafe void Color3h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -111033,15 +113774,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hvNV")] + [CLSCompliant(false)] public static void Color4h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hvNV")] + [CLSCompliant(false)] public static void Color4h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hvNV")] + [CLSCompliant(false)] public static unsafe void Color4h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] @@ -111062,11 +113805,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterfvNV")] + [CLSCompliant(false)] public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterfvNV")] + [CLSCompliant(false)] public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Single* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] @@ -111075,24 +113819,27 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterivNV")] + [CLSCompliant(false)] public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterivNV")] + [CLSCompliant(false)] public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners2] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glCombinerStageParameterfvNV")] + [CLSCompliant(false)] public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners2] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glCombinerStageParameterfvNV")] + [CLSCompliant(false)] public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, ref Single @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glCombinerStageParameterfvNV")] + [CLSCompliant(false)] public static unsafe void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, Single* @params) { throw new NotImplementedException(); } /// [requires: NV_copy_image] @@ -111169,6 +113916,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_copy_image", Version = "", EntryPoint = "glCopyImageSubDataNV")] + [CLSCompliant(false)] public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL.NvCopyImage srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvCopyImage dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: NV_copy_image] @@ -111244,494 +113992,524 @@ namespace OpenTK.Graphics.OpenGL /// The depth of the region to be copied. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_copy_image", Version = "", EntryPoint = "glCopyImageSubDataNV")] + [CLSCompliant(false)] public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.NvCopyImage srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvCopyImage dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] + [CLSCompliant(false)] public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] + [CLSCompliant(false)] public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] + [CLSCompliant(false)] public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] + [CLSCompliant(false)] public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFence(Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFence(UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, Int32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, Int32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, UInt32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static void DeleteFences(Int32 n, ref UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] + [CLSCompliant(false)] public static unsafe void DeleteFences(Int32 n, UInt32* fences) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] + [CLSCompliant(false)] public static void DeleteOcclusionQuery(Int32 ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] + [CLSCompliant(false)] public static void DeleteOcclusionQuery(UInt32 ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] + [CLSCompliant(false)] public static void DeleteOcclusionQueries(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] + [CLSCompliant(false)] public static void DeleteOcclusionQueries(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] + [CLSCompliant(false)] public static unsafe void DeleteOcclusionQueries(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] + [CLSCompliant(false)] public static void DeleteOcclusionQueries(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] + [CLSCompliant(false)] public static void DeleteOcclusionQueries(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] + [CLSCompliant(false)] public static unsafe void DeleteOcclusionQueries(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] + [CLSCompliant(false)] public static void DeletePath(Int32 path, Int32 range) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] + [CLSCompliant(false)] public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -111743,6 +114521,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -111753,8 +114532,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] + [CLSCompliant(false)] public static void DeleteProgram(UInt32 programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -111766,6 +114545,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 n, Int32[] programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -111777,6 +114557,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 n, ref Int32 programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -111787,8 +114568,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] + [CLSCompliant(false)] public static unsafe void DeleteProgram(Int32 n, Int32* programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -111799,8 +114580,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 n, UInt32[] programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -111811,8 +114592,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 n, ref UInt32 programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -111823,17 +114604,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] + [CLSCompliant(false)] public static unsafe void DeleteProgram(Int32 n, UInt32* programs) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] + [CLSCompliant(false)] public static void DeleteTransformFeedback(Int32 ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] + [CLSCompliant(false)] public static void DeleteTransformFeedback(UInt32 ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -111850,6 +114632,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -111866,6 +114649,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -111881,8 +114665,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] + [CLSCompliant(false)] public static unsafe void DeleteTransformFeedbacks(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -111898,8 +114682,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -111915,8 +114699,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -111932,8 +114716,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] + [CLSCompliant(false)] public static unsafe void DeleteTransformFeedbacks(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: NV_depth_buffer_float] @@ -111958,11 +114742,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_draw_texture] [AutoGenerated(Category = "NV_draw_texture", Version = "", EntryPoint = "glDrawTextureNV")] + [CLSCompliant(false)] public static void DrawTexture(Int32 texture, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } /// [requires: NV_draw_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_draw_texture", Version = "", EntryPoint = "glDrawTextureNV")] + [CLSCompliant(false)] public static void DrawTexture(UInt32 texture, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -111980,6 +114765,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")] + [CLSCompliant(false)] public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 mode, Int32 id) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -111996,8 +114782,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use PrimitiveType overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")] + [CLSCompliant(false)] public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 mode, UInt32 id) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -112014,6 +114800,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")] + [CLSCompliant(false)] public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -112029,8 +114816,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the name of a transform feedback object from which to retrieve a primitive count. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")] + [CLSCompliant(false)] public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] @@ -112051,11 +114838,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glEndVideoCaptureNV")] + [CLSCompliant(false)] public static void EndVideoCapture(Int32 video_capture_slot) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glEndVideoCaptureNV")] + [CLSCompliant(false)] public static void EndVideoCapture(UInt32 video_capture_slot) { throw new NotImplementedException(); } /// [requires: NV_evaluators] @@ -112064,30 +114852,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] + [CLSCompliant(false)] public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] + [CLSCompliant(false)] public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, ref Single @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] + [CLSCompliant(false)] public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Single* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] + [CLSCompliant(false)] public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] + [CLSCompliant(false)] public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, ref Single @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] + [CLSCompliant(false)] public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Single* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] @@ -112096,11 +114886,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] + [CLSCompliant(false)] public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] + [CLSCompliant(false)] public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_pixel_data_range] @@ -112120,72 +114911,78 @@ namespace OpenTK.Graphics.OpenGL public static void FogCoordh(Half fog) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glFogCoordhvNV")] + [CLSCompliant(false)] public static unsafe void FogCoordh(Half* fog) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static Int32 GenFence() { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] Int32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out Int32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] Int32* fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] UInt32[] fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static void GenFences(Int32 n, [OutAttribute] out UInt32 fences) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] + [CLSCompliant(false)] public static unsafe void GenFences(Int32 n, [OutAttribute] UInt32* fences) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] + [CLSCompliant(false)] public static Int32 GenOcclusionQuery() { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] + [CLSCompliant(false)] public static void GenOcclusionQueries(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] + [CLSCompliant(false)] public static void GenOcclusionQueries(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] + [CLSCompliant(false)] public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] + [CLSCompliant(false)] public static void GenOcclusionQueries(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] + [CLSCompliant(false)] public static void GenOcclusionQueries(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] + [CLSCompliant(false)] public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] @@ -112194,38 +114991,42 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] + [CLSCompliant(false)] public static Int32 GenProgram() { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] + [CLSCompliant(false)] public static void GenProgram(Int32 n, [OutAttribute] Int32[] programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] + [CLSCompliant(false)] public static void GenProgram(Int32 n, [OutAttribute] out Int32 programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] + [CLSCompliant(false)] public static unsafe void GenProgram(Int32 n, [OutAttribute] Int32* programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] + [CLSCompliant(false)] public static void GenProgram(Int32 n, [OutAttribute] UInt32[] programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] + [CLSCompliant(false)] public static void GenProgram(Int32 n, [OutAttribute] out UInt32 programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] + [CLSCompliant(false)] public static unsafe void GenProgram(Int32 n, [OutAttribute] UInt32* programs) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] + [CLSCompliant(false)] public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -112242,6 +115043,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -112258,6 +115060,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -112273,8 +115076,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] + [CLSCompliant(false)] public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -112290,8 +115093,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -112307,8 +115110,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -112324,27 +115127,28 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] + [CLSCompliant(false)] public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] + [CLSCompliant(false)] public static void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] + [CLSCompliant(false)] public static unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] + [CLSCompliant(false)] public static void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] + [CLSCompliant(false)] public static unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -112366,6 +115170,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -112387,6 +115192,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -112407,8 +115213,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -112429,8 +115235,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -112451,8 +115257,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -112473,339 +115279,374 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterfvNV")] + [CLSCompliant(false)] public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterfvNV")] + [CLSCompliant(false)] public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterivNV")] + [CLSCompliant(false)] public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterivNV")] + [CLSCompliant(false)] public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterivNV")] + [CLSCompliant(false)] public static unsafe void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterfvNV")] + [CLSCompliant(false)] public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterfvNV")] + [CLSCompliant(false)] public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterivNV")] + [CLSCompliant(false)] public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterivNV")] + [CLSCompliant(false)] public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterivNV")] + [CLSCompliant(false)] public static unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners2] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glGetCombinerStageParameterfvNV")] + [CLSCompliant(false)] public static void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners2] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glGetCombinerStageParameterfvNV")] + [CLSCompliant(false)] public static void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glGetCombinerStageParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] + [CLSCompliant(false)] public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterfvNV")] + [CLSCompliant(false)] public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterfvNV")] + [CLSCompliant(false)] public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterivNV")] + [CLSCompliant(false)] public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterivNV")] + [CLSCompliant(false)] public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_register_combiners] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterivNV")] + [CLSCompliant(false)] public static unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] + [CLSCompliant(false)] public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] + [CLSCompliant(false)] public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] + [CLSCompliant(false)] public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute] Int64[] result) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] + [CLSCompliant(false)] public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute] out Int64 result) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] + [CLSCompliant(false)] public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute] Int64* result) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] + [CLSCompliant(false)] public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute] UInt64[] result) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] + [CLSCompliant(false)] public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute] out UInt64 result) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] + [CLSCompliant(false)] public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute] UInt64* result) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] + [CLSCompliant(false)] public static Int64 GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] Int64[] result) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] out Int64 result) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] Int64* result) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] UInt64[] result) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] out UInt64 result) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] UInt64* result) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] + [CLSCompliant(false)] public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] + [CLSCompliant(false)] public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] + [CLSCompliant(false)] public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] + [CLSCompliant(false)] public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] + [CLSCompliant(false)] public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] + [CLSCompliant(false)] public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] + [CLSCompliant(false)] public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] + [CLSCompliant(false)] public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] + [CLSCompliant(false)] public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] + [CLSCompliant(false)] public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute] IntPtr points) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute] T6[] points) where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute] T6[,] points) where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute] T6[,,] points) where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute] ref T6 points) where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute] IntPtr points) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute] T6[] points) where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute] T6[,] points) where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute] T6[,,] points) where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] + [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute] ref T6 points) where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterfvNV")] + [CLSCompliant(false)] public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterfvNV")] + [CLSCompliant(false)] public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterivNV")] + [CLSCompliant(false)] public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterivNV")] + [CLSCompliant(false)] public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterivNV")] + [CLSCompliant(false)] public static unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_explicit_multisample] @@ -112827,6 +115668,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute] Single[] val) { throw new NotImplementedException(); } /// [requires: NV_explicit_multisample] @@ -112848,6 +115690,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute] out Single val) { throw new NotImplementedException(); } /// [requires: NV_explicit_multisample] @@ -112868,8 +115711,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] + [CLSCompliant(false)] public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute] Single* val) { throw new NotImplementedException(); } /// [requires: NV_explicit_multisample] @@ -112890,8 +115733,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute] Single[] val) { throw new NotImplementedException(); } /// [requires: NV_explicit_multisample] @@ -112912,8 +115755,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute] out Single val) { throw new NotImplementedException(); } /// [requires: NV_explicit_multisample] @@ -112934,754 +115777,804 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] + [CLSCompliant(false)] public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute] Single* val) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] + [CLSCompliant(false)] public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] + [CLSCompliant(false)] public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] + [CLSCompliant(false)] public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] + [CLSCompliant(false)] public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] + [CLSCompliant(false)] public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] + [CLSCompliant(false)] public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] + [CLSCompliant(false)] public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] + [CLSCompliant(false)] public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] + [CLSCompliant(false)] public static unsafe void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] + [CLSCompliant(false)] public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] + [CLSCompliant(false)] public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] + [CLSCompliant(false)] public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryuivNV")] + [CLSCompliant(false)] public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryuivNV")] + [CLSCompliant(false)] public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryuivNV")] + [CLSCompliant(false)] public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Single[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] out Single value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Single* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Int32[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] out Int32 value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Int32* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] + [CLSCompliant(false)] public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] + [CLSCompliant(false)] public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] + [CLSCompliant(false)] public static void GetPathCommands(Int32 path, [OutAttribute] Byte[] commands) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] + [CLSCompliant(false)] public static void GetPathCommands(Int32 path, [OutAttribute] out Byte commands) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void GetPathCommands(Int32 path, [OutAttribute] Byte* commands) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] + [CLSCompliant(false)] public static void GetPathCommands(UInt32 path, [OutAttribute] Byte[] commands) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] + [CLSCompliant(false)] public static void GetPathCommands(UInt32 path, [OutAttribute] out Byte commands) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void GetPathCommands(UInt32 path, [OutAttribute] Byte* commands) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] + [CLSCompliant(false)] public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] + [CLSCompliant(false)] public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] + [CLSCompliant(false)] public static void GetPathCoords(Int32 path, [OutAttribute] Single[] coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] + [CLSCompliant(false)] public static void GetPathCoords(Int32 path, [OutAttribute] out Single coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] + [CLSCompliant(false)] public static unsafe void GetPathCoords(Int32 path, [OutAttribute] Single* coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] + [CLSCompliant(false)] public static void GetPathCoords(UInt32 path, [OutAttribute] Single[] coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] + [CLSCompliant(false)] public static void GetPathCoords(UInt32 path, [OutAttribute] out Single coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] + [CLSCompliant(false)] public static unsafe void GetPathCoords(UInt32 path, [OutAttribute] Single* coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] + [CLSCompliant(false)] public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] + [CLSCompliant(false)] public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] + [CLSCompliant(false)] public static void GetPathDashArray(Int32 path, [OutAttribute] Single[] dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] + [CLSCompliant(false)] public static void GetPathDashArray(Int32 path, [OutAttribute] out Single dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] + [CLSCompliant(false)] public static unsafe void GetPathDashArray(Int32 path, [OutAttribute] Single* dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] + [CLSCompliant(false)] public static void GetPathDashArray(UInt32 path, [OutAttribute] Single[] dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] + [CLSCompliant(false)] public static void GetPathDashArray(UInt32 path, [OutAttribute] out Single dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] + [CLSCompliant(false)] public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute] Single* dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] + [CLSCompliant(false)] public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] + [CLSCompliant(false)] public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute] Single[] metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute] out Single metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute] Single* metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute] Single[] metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute] out Single metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute] Single* metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute] out Single metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute] Single* metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute] out Single metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute] Single* metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute] out Single metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute] Single* metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute] out Single metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute] Single* metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute] out Single metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute] Single* metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute] out Single metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single* metrics) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute] out Single metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single* metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute] out Single metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single* metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute] out Single metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single* metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single[] metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute] out Single metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute] Single* metrics) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Single[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] out Single value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Single* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Single[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] out Single value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Single* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Int32[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] out Int32 value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Int32* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Int32[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] out Int32 value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Int32* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single[] returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] out Single returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute] Single* returnedSpacing) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] + [CLSCompliant(false)] public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Single[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] + [CLSCompliant(false)] public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] out Single value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] + [CLSCompliant(false)] public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Single* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] + [CLSCompliant(false)] public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Int32[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] + [CLSCompliant(false)] public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] out Int32 value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] + [CLSCompliant(false)] public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute] Int32* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] + [CLSCompliant(false)] public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] + [CLSCompliant(false)] public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] + [CLSCompliant(false)] public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] + [CLSCompliant(false)] public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIuivNV")] + [CLSCompliant(false)] public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIuivNV")] + [CLSCompliant(false)] public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIuivNV")] + [CLSCompliant(false)] public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -113703,6 +116596,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] + [CLSCompliant(false)] public static void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -113724,6 +116618,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] + [CLSCompliant(false)] public static void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -113744,8 +116639,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] + [CLSCompliant(false)] public static unsafe void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -113766,8 +116661,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] + [CLSCompliant(false)] public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -113788,8 +116683,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] + [CLSCompliant(false)] public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -113810,256 +116705,273 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] + [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] + [CLSCompliant(false)] public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] + [CLSCompliant(false)] public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] + [CLSCompliant(false)] public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] + [CLSCompliant(false)] public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIuivNV")] + [CLSCompliant(false)] public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIuivNV")] + [CLSCompliant(false)] public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIuivNV")] + [CLSCompliant(false)] public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] + [CLSCompliant(false)] public static void GetProgramNamedParameter(Int32 id, Int32 len, ref Byte name, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] + [CLSCompliant(false)] public static void GetProgramNamedParameter(Int32 id, Int32 len, ref Byte name, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] + [CLSCompliant(false)] public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] + [CLSCompliant(false)] public static void GetProgramNamedParameter(UInt32 id, Int32 len, ref Byte name, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] + [CLSCompliant(false)] public static void GetProgramNamedParameter(UInt32 id, Int32 len, ref Byte name, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] + [CLSCompliant(false)] public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] + [CLSCompliant(false)] public static void GetProgramNamedParameter(Int32 id, Int32 len, ref Byte name, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] + [CLSCompliant(false)] public static void GetProgramNamedParameter(Int32 id, Int32 len, ref Byte name, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] + [CLSCompliant(false)] public static void GetProgramNamedParameter(UInt32 id, Int32 len, ref Byte name, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] + [CLSCompliant(false)] public static void GetProgramNamedParameter(UInt32 id, Int32 len, ref Byte name, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] + [CLSCompliant(false)] public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] + [CLSCompliant(false)] public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] + [CLSCompliant(false)] public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] + [CLSCompliant(false)] public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] + [CLSCompliant(false)] public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] + [CLSCompliant(false)] public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] + [CLSCompliant(false)] public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] + [CLSCompliant(false)] public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] + [CLSCompliant(false)] public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] + [CLSCompliant(false)] public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] + [CLSCompliant(false)] public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] + [CLSCompliant(false)] public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Byte[] program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] + [CLSCompliant(false)] public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Byte program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] + [CLSCompliant(false)] public static unsafe void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Byte* program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] + [CLSCompliant(false)] public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Byte[] program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] + [CLSCompliant(false)] public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Byte program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] + [CLSCompliant(false)] public static unsafe void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Byte* program) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] + [CLSCompliant(false)] public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] + [CLSCompliant(false)] public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] + [CLSCompliant(false)] public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute] Int32* param) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] + [CLSCompliant(false)] public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute] UInt32[] param) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] + [CLSCompliant(false)] public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute] out UInt32 param) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] + [CLSCompliant(false)] public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute] UInt32* param) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] + [CLSCompliant(false)] public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] + [CLSCompliant(false)] public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] + [CLSCompliant(false)] public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] + [CLSCompliant(false)] public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetTrackMatrixivNV")] + [CLSCompliant(false)] public static void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetTrackMatrixivNV")] + [CLSCompliant(false)] public static unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetTrackMatrixivNV")] + [CLSCompliant(false)] public static void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetTrackMatrixivNV")] + [CLSCompliant(false)] public static unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -114101,6 +117013,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute] out Int32 location) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -114141,8 +117054,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute] Int32* location) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -114183,8 +117096,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute] out Int32 location) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -114225,8 +117138,8 @@ namespace OpenTK.Graphics.OpenGL /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute] Int32* location) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -114248,6 +117161,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -114269,6 +117183,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -114289,8 +117204,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -114311,8 +117226,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -114333,8 +117248,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -114355,8 +117270,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -114377,8 +117292,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -114399,8 +117314,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -114421,17 +117336,18 @@ namespace OpenTK.Graphics.OpenGL /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetVaryingLocationNV")] + [CLSCompliant(false)] public static Int32 GetVaryingLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetVaryingLocationNV")] + [CLSCompliant(false)] public static Int32 GetVaryingLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114453,6 +117369,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114473,8 +117390,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114495,8 +117412,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114517,8 +117434,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114540,6 +117457,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114560,8 +117478,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114582,8 +117500,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114604,8 +117522,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114627,6 +117545,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114647,8 +117566,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114669,8 +117588,8 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -114691,310 +117610,329 @@ namespace OpenTK.Graphics.OpenGL /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] + [CLSCompliant(false)] public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] + [CLSCompliant(false)] public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] + [CLSCompliant(false)] public static unsafe void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] + [CLSCompliant(false)] public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] + [CLSCompliant(false)] public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] + [CLSCompliant(false)] public static unsafe void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] + [CLSCompliant(false)] public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] + [CLSCompliant(false)] public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] + [CLSCompliant(false)] public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] + [CLSCompliant(false)] public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] + [CLSCompliant(false)] public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] + [CLSCompliant(false)] public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] + [CLSCompliant(false)] public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] + [CLSCompliant(false)] public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] + [CLSCompliant(false)] public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] + [CLSCompliant(false)] public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] + [CLSCompliant(false)] public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] + [CLSCompliant(false)] public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] + [CLSCompliant(false)] public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] + [CLSCompliant(false)] public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] + [CLSCompliant(false)] public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] + [CLSCompliant(false)] public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] + [CLSCompliant(false)] public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] + [CLSCompliant(false)] public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] + [CLSCompliant(false)] public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoui64vNV")] + [CLSCompliant(false)] public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoui64vNV")] + [CLSCompliant(false)] public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoui64vNV")] + [CLSCompliant(false)] public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideouivNV")] + [CLSCompliant(false)] public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideouivNV")] + [CLSCompliant(false)] public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideouivNV")] + [CLSCompliant(false)] public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] @@ -115003,11 +117941,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] + [CLSCompliant(false)] public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] + [CLSCompliant(false)] public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -115016,65 +117955,72 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] + [CLSCompliant(false)] public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] + [CLSCompliant(false)] public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] + [CLSCompliant(false)] public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] + [CLSCompliant(false)] public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsNamedBufferResidentNV")] + [CLSCompliant(false)] public static bool IsNamedBufferResident(Int32 buffer) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsNamedBufferResidentNV")] + [CLSCompliant(false)] public static bool IsNamedBufferResident(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glIsOcclusionQueryNV")] + [CLSCompliant(false)] public static bool IsOcclusionQuery(Int32 id) { throw new NotImplementedException(); } /// [requires: NV_occlusion_query] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glIsOcclusionQueryNV")] + [CLSCompliant(false)] public static bool IsOcclusionQuery(UInt32 id) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] + [CLSCompliant(false)] public static bool IsPath(Int32 path) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] + [CLSCompliant(false)] public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] + [CLSCompliant(false)] public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] + [CLSCompliant(false)] public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] + [CLSCompliant(false)] public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] + [CLSCompliant(false)] public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -115086,6 +118032,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glIsProgramNV")] + [CLSCompliant(false)] public static bool IsProgram(Int32 id) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -115096,17 +118043,18 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a potential program object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glIsProgramNV")] + [CLSCompliant(false)] public static bool IsProgram(UInt32 id) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] + [CLSCompliant(false)] public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] + [CLSCompliant(false)] public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -115118,6 +118066,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glIsTransformFeedbackNV")] + [CLSCompliant(false)] public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -115128,36 +118077,38 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a transform feedback object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glIsTransformFeedbackNV")] + [CLSCompliant(false)] public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] + [CLSCompliant(false)] public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, Byte[] program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] + [CLSCompliant(false)] public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, ref Byte program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] + [CLSCompliant(false)] public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, Byte* program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] + [CLSCompliant(false)] public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, Byte[] program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] + [CLSCompliant(false)] public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, ref Byte program) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] + [CLSCompliant(false)] public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, Byte* program) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -115170,143 +118121,158 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] + [CLSCompliant(false)] public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] + [CLSCompliant(false)] public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] + [CLSCompliant(false)] public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL.NvBindlessTexture access) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] + [CLSCompliant(false)] public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.NvBindlessTexture access) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferNonResidentNV")] + [CLSCompliant(false)] public static void MakeNamedBufferNonResident(Int32 buffer) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferNonResidentNV")] + [CLSCompliant(false)] public static void MakeNamedBufferNonResident(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferResidentNV")] + [CLSCompliant(false)] public static void MakeNamedBufferResident(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferResidentNV")] + [CLSCompliant(false)] public static void MakeNamedBufferResident(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] + [CLSCompliant(false)] public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] + [CLSCompliant(false)] public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] + [CLSCompliant(false)] public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] + [CLSCompliant(false)] public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute] T8[] points) where T8 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute] T8[,] points) where T8 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute] T8[,,] points) where T8 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute] ref T8 points) where T8 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute] T8[] points) where T8 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute] T8[,] points) where T8 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute] T8[,,] points) where T8 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] + [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute] ref T8 points) where T8 : struct { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterfvNV")] + [CLSCompliant(false)] public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterfvNV")] + [CLSCompliant(false)] public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, ref Single @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterfvNV")] + [CLSCompliant(false)] public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, Single* @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterivNV")] + [CLSCompliant(false)] public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterivNV")] + [CLSCompliant(false)] public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_evaluators] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterivNV")] + [CLSCompliant(false)] public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_bindless_multi_draw_indirect] @@ -115315,18 +118281,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_bindless_multi_draw_indirect] [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct { throw new NotImplementedException(); } /// [requires: NV_bindless_multi_draw_indirect] [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct { throw new NotImplementedException(); } /// [requires: NV_bindless_multi_draw_indirect] [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct { throw new NotImplementedException(); } @@ -115343,18 +118312,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_bindless_multi_draw_indirect] [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_bindless_multi_draw_indirect] [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_bindless_multi_draw_indirect] [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new NotImplementedException(); } @@ -115370,8 +118342,8 @@ namespace OpenTK.Graphics.OpenGL public static void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord1hvNV")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -115380,15 +118352,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hvNV")] + [CLSCompliant(false)] public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hvNV")] + [CLSCompliant(false)] public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hvNV")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -115397,15 +118371,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hvNV")] + [CLSCompliant(false)] public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hvNV")] + [CLSCompliant(false)] public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hvNV")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -115414,15 +118390,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hvNV")] + [CLSCompliant(false)] public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hvNV")] + [CLSCompliant(false)] public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hvNV")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -115431,15 +118409,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hvNV")] + [CLSCompliant(false)] public static void Normal3h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hvNV")] + [CLSCompliant(false)] public static void Normal3h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hvNV")] + [CLSCompliant(false)] public static unsafe void Normal3h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] @@ -115448,262 +118428,279 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, Single[] coeffs) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, ref Single coeffs) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, Single* coeffs) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T5 coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T5 coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T5 coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T5 coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T5 coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T5[,,] coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T5 coords) where T5 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T3[] coords) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T3[,] coords) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T3[,,] coords) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T3 coords) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T3[] coords) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T3[,] coords) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T3[,,] coords) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] + [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T3 coords) where T3 : struct { throw new NotImplementedException(); } @@ -115714,30 +118711,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] + [CLSCompliant(false)] public static void PathDashArray(Int32 path, Int32 dashCount, Single[] dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] + [CLSCompliant(false)] public static void PathDashArray(Int32 path, Int32 dashCount, ref Single dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] + [CLSCompliant(false)] public static unsafe void PathDashArray(Int32 path, Int32 dashCount, Single* dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] + [CLSCompliant(false)] public static void PathDashArray(UInt32 path, Int32 dashCount, Single[] dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] + [CLSCompliant(false)] public static void PathDashArray(UInt32 path, Int32 dashCount, ref Single dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] + [CLSCompliant(false)] public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, Single* dashArray) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] @@ -115746,71 +118745,78 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute] T6[] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct @@ -115818,6 +118824,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute] T6[,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct @@ -115825,6 +118832,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute] T6[,,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct @@ -115832,43 +118840,44 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute] ref T6 charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute] T6[] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute] T6[,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute] T6[,,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute] ref T6 charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct @@ -115876,58 +118885,62 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] + [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] + [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32[] value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32* value) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] @@ -115936,334 +118949,357 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] + [CLSCompliant(false)] public static void PathStencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] + [CLSCompliant(false)] public static void PathStencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, IntPtr pathString) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute] T3[] pathString) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute] T3[,] pathString) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute] T3[,,] pathString) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute] ref T3 pathString) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, IntPtr pathString) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute] T3[] pathString) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute] T3[,] pathString) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute] T3[,,] pathString) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute] ref T3 pathString) where T3 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T7 coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T7 coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T7 coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T7 coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T7 coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T7[,,] coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] + [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T7 coords) where T7 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T4[] coords) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T4[,] coords) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T4[,,] coords) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T4 coords) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, IntPtr coords) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T4[] coords) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T4[,] coords) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] T4[,,] coords) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] + [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute] ref T4 coords) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -116278,18 +119314,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_pixel_data_range] [AutoGenerated(Category = "NV_pixel_data_range", Version = "", EntryPoint = "glPixelDataRangeNV")] + [CLSCompliant(false)] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_pixel_data_range] [AutoGenerated(Category = "NV_pixel_data_range", Version = "", EntryPoint = "glPixelDataRangeNV")] + [CLSCompliant(false)] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_pixel_data_range] [AutoGenerated(Category = "NV_pixel_data_range", Version = "", EntryPoint = "glPixelDataRangeNV")] + [CLSCompliant(false)] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -116302,21 +119341,22 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] + [CLSCompliant(false)] public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute] out Single x, [OutAttribute] out Single y, [OutAttribute] out Single tangentX, [OutAttribute] out Single tangentY) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] + [CLSCompliant(false)] public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute] Single* x, [OutAttribute] Single* y, [OutAttribute] Single* tangentX, [OutAttribute] Single* tangentY) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] + [CLSCompliant(false)] public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute] out Single x, [OutAttribute] out Single y, [OutAttribute] out Single tangentX, [OutAttribute] out Single tangentY) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] + [CLSCompliant(false)] public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute] Single* x, [OutAttribute] Single* y, [OutAttribute] Single* tangentX, [OutAttribute] Single* tangentY) { throw new NotImplementedException(); } /// [requires: NV_point_sprite] @@ -116359,6 +119399,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_point_sprite", Version = "", EntryPoint = "glPointParameterivNV")] + [CLSCompliant(false)] public static void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_point_sprite] @@ -116379,26 +119420,28 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_point_sprite", Version = "", EntryPoint = "glPointParameterivNV")] + [CLSCompliant(false)] public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_present_video] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glPresentFrameDualFillNV")] + [CLSCompliant(false)] public static void PresentFrameDualFill(Int32 video_slot, Int64 minPresentTime, Int32 beginPresentTimeId, Int32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, Int32 fill0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, Int32 fill1, OpenTK.Graphics.OpenGL.NvPresentVideo target2, Int32 fill2, OpenTK.Graphics.OpenGL.NvPresentVideo target3, Int32 fill3) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glPresentFrameDualFillNV")] + [CLSCompliant(false)] public static void PresentFrameDualFill(UInt32 video_slot, UInt64 minPresentTime, UInt32 beginPresentTimeId, UInt32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, UInt32 fill0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, UInt32 fill1, OpenTK.Graphics.OpenGL.NvPresentVideo target2, UInt32 fill2, OpenTK.Graphics.OpenGL.NvPresentVideo target3, UInt32 fill3) { throw new NotImplementedException(); } /// [requires: NV_present_video] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glPresentFrameKeyedNV")] + [CLSCompliant(false)] public static void PresentFrameKeye(Int32 video_slot, Int64 minPresentTime, Int32 beginPresentTimeId, Int32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, Int32 fill0, Int32 key0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, Int32 fill1, Int32 key1) { throw new NotImplementedException(); } /// [requires: NV_present_video] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glPresentFrameKeyedNV")] + [CLSCompliant(false)] public static void PresentFrameKeye(UInt32 video_slot, UInt64 minPresentTime, UInt32 beginPresentTimeId, UInt32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, UInt32 fill0, UInt32 key0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, UInt32 fill1, UInt32 key1) { throw new NotImplementedException(); } /// [requires: NV_primitive_restart] @@ -116410,6 +119453,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_primitive_restart", Version = "", EntryPoint = "glPrimitiveRestartIndexNV")] + [CLSCompliant(false)] public static void PrimitiveRestartIndex(Int32 index) { throw new NotImplementedException(); } /// [requires: NV_primitive_restart] @@ -116420,8 +119464,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value to be interpreted as the primitive restart index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_primitive_restart", Version = "", EntryPoint = "glPrimitiveRestartIndexNV")] + [CLSCompliant(false)] public static void PrimitiveRestartIndex(UInt32 index) { throw new NotImplementedException(); } /// [requires: NV_primitive_restart] @@ -116430,367 +119474,387 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_parameter_buffer_object] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] + [CLSCompliant(false)] public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] + [CLSCompliant(false)] public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, ref Single @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] + [CLSCompliant(false)] public static unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, Single* @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] + [CLSCompliant(false)] public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] + [CLSCompliant(false)] public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, ref Single @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] + [CLSCompliant(false)] public static unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, Single* @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] + [CLSCompliant(false)] public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] + [CLSCompliant(false)] public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] + [CLSCompliant(false)] public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] + [CLSCompliant(false)] public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] + [CLSCompliant(false)] public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] + [CLSCompliant(false)] public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIuivNV")] + [CLSCompliant(false)] public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIuivNV")] + [CLSCompliant(false)] public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_parameter_buffer_object] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIuivNV")] + [CLSCompliant(false)] public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4iNV")] + [CLSCompliant(false)] public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4iNV")] + [CLSCompliant(false)] public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] + [CLSCompliant(false)] public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] + [CLSCompliant(false)] public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] + [CLSCompliant(false)] public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] + [CLSCompliant(false)] public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uiNV")] + [CLSCompliant(false)] public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uivNV")] + [CLSCompliant(false)] public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uivNV")] + [CLSCompliant(false)] public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uivNV")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] + [CLSCompliant(false)] public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] + [CLSCompliant(false)] public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] + [CLSCompliant(false)] public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] + [CLSCompliant(false)] public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4uivNV")] + [CLSCompliant(false)] public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4uivNV")] + [CLSCompliant(false)] public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4uivNV")] + [CLSCompliant(false)] public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4iNV")] + [CLSCompliant(false)] public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4iNV")] + [CLSCompliant(false)] public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] + [CLSCompliant(false)] public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] + [CLSCompliant(false)] public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] + [CLSCompliant(false)] public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] + [CLSCompliant(false)] public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uiNV")] + [CLSCompliant(false)] public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uivNV")] + [CLSCompliant(false)] public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uivNV")] + [CLSCompliant(false)] public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uivNV")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] + [CLSCompliant(false)] public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] + [CLSCompliant(false)] public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] + [CLSCompliant(false)] public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] + [CLSCompliant(false)] public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4uivNV")] + [CLSCompliant(false)] public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4uivNV")] + [CLSCompliant(false)] public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4uivNV")] + [CLSCompliant(false)] public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] + [CLSCompliant(false)] public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] + [CLSCompliant(false)] public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] + [CLSCompliant(false)] public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double* v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] + [CLSCompliant(false)] public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double* v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] + [CLSCompliant(false)] public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] + [CLSCompliant(false)] public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] + [CLSCompliant(false)] public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single* v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] + [CLSCompliant(false)] public static void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_fragment_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] + [CLSCompliant(false)] public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -116812,6 +119876,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -116832,8 +119897,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -116855,6 +119920,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -116876,6 +119942,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -116896,8 +119963,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -116918,8 +119985,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -116940,8 +120007,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -116962,8 +120029,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -116985,6 +120052,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -117005,8 +120073,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -117028,6 +120096,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -117049,6 +120118,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -117069,8 +120139,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -117091,8 +120161,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -117113,8 +120183,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] + [CLSCompliant(false)] public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -117135,128 +120205,134 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] + [CLSCompliant(false)] public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [Obsolete("Use int overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] + [CLSCompliant(false)] public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] + [CLSCompliant(false)] public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] + [CLSCompliant(false)] public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] + [CLSCompliant(false)] public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] + [CLSCompliant(false)] public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] + [CLSCompliant(false)] public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_program5] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] + [CLSCompliant(false)] public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, UInt32* @params) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117296,6 +120372,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117334,8 +120411,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117375,6 +120452,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117414,6 +120492,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117452,8 +120531,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117492,8 +120571,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117532,8 +120611,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117572,8 +120651,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117612,8 +120691,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117652,8 +120731,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117692,8 +120771,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117732,8 +120811,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117773,6 +120852,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117811,8 +120891,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117852,6 +120932,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117891,6 +120972,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117929,8 +121011,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -117969,8 +121051,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118009,8 +121091,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118049,8 +121131,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118089,8 +121171,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64NV")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118129,8 +121211,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118169,8 +121251,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118209,8 +121291,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118250,6 +121332,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118288,8 +121371,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118329,6 +121412,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118368,6 +121452,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118406,8 +121491,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118446,8 +121531,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118486,8 +121571,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118526,8 +121611,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118566,8 +121651,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64NV")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118606,8 +121691,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118646,8 +121731,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118686,8 +121771,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118727,6 +121812,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118765,8 +121851,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118806,6 +121892,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118845,6 +121932,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118883,8 +121971,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118923,8 +122011,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -118963,8 +122051,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -119003,8 +122091,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -119043,8 +122131,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64NV")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -119083,8 +122171,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -119123,8 +122211,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -119163,45 +122251,48 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] + [CLSCompliant(false)] public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] + [CLSCompliant(false)] public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] + [CLSCompliant(false)] public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, Int64[] values) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] + [CLSCompliant(false)] public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, ref Int64 values) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, Int64* values) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] + [CLSCompliant(false)] public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, UInt64[] values) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] + [CLSCompliant(false)] public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, ref UInt64 values) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, UInt64* values) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -119241,6 +122332,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64NV")] + [CLSCompliant(false)] public static void ProgramUniform(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -119279,8 +122371,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64NV")] + [CLSCompliant(false)] public static void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -119320,6 +122412,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform(Int32 program, Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -119359,6 +122452,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform(Int32 program, Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -119397,8 +122491,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -119437,8 +122531,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -119477,8 +122571,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] + [CLSCompliant(false)] public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -119517,8 +122611,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] + [CLSCompliant(false)] public static unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_geometry_program4] @@ -119531,30 +122625,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] + [CLSCompliant(false)] public static void RequestResidentProgram(Int32 n, Int32[] programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] + [CLSCompliant(false)] public static void RequestResidentProgram(Int32 n, ref Int32 programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] + [CLSCompliant(false)] public static unsafe void RequestResidentProgram(Int32 n, Int32* programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] + [CLSCompliant(false)] public static void RequestResidentProgram(Int32 n, UInt32[] programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] + [CLSCompliant(false)] public static void RequestResidentProgram(Int32 n, ref UInt32 programs) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] + [CLSCompliant(false)] public static unsafe void RequestResidentProgram(Int32 n, UInt32* programs) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback2] @@ -119565,11 +122661,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_explicit_multisample] [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glSampleMaskIndexedNV")] + [CLSCompliant(false)] public static void SampleMaskIndexed(Int32 index, Int32 mask) { throw new NotImplementedException(); } /// [requires: NV_explicit_multisample] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glSampleMaskIndexedNV")] + [CLSCompliant(false)] public static void SampleMaskIndexed(UInt32 index, UInt32 mask) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -119578,15 +122675,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hvNV")] + [CLSCompliant(false)] public static void SecondaryColor3h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hvNV")] + [CLSCompliant(false)] public static void SecondaryColor3h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hvNV")] + [CLSCompliant(false)] public static unsafe void SecondaryColor3h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] @@ -119595,414 +122694,438 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] + [CLSCompliant(false)] public static void SetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence condition) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] + [CLSCompliant(false)] public static void SetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence condition) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] + [CLSCompliant(false)] public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] + [CLSCompliant(false)] public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] + [CLSCompliant(false)] public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] + [CLSCompliant(false)] public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] + [CLSCompliant(false)] public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } /// [requires: NV_fence] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] + [CLSCompliant(false)] public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -120010,8 +123133,8 @@ namespace OpenTK.Graphics.OpenGL public static void TexCoord1h(Half s) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord1hvNV")] + [CLSCompliant(false)] public static unsafe void TexCoord1h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -120020,15 +123143,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hvNV")] + [CLSCompliant(false)] public static void TexCoord2h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hvNV")] + [CLSCompliant(false)] public static void TexCoord2h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hvNV")] + [CLSCompliant(false)] public static unsafe void TexCoord2h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -120037,15 +123162,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hvNV")] + [CLSCompliant(false)] public static void TexCoord3h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hvNV")] + [CLSCompliant(false)] public static void TexCoord3h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hvNV")] + [CLSCompliant(false)] public static unsafe void TexCoord3h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -120054,15 +123181,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hvNV")] + [CLSCompliant(false)] public static void TexCoord4h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hvNV")] + [CLSCompliant(false)] public static void TexCoord4h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hvNV")] + [CLSCompliant(false)] public static unsafe void TexCoord4h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] @@ -120079,11 +123208,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_explicit_multisample] [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glTexRenderbufferNV")] + [CLSCompliant(false)] public static void TexRenderbuffer(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: NV_explicit_multisample] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glTexRenderbufferNV")] + [CLSCompliant(false)] public static void TexRenderbuffer(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: NV_texture_barrier] @@ -120092,88 +123222,97 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_texture_multisample] [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleCoverageNV")] + [CLSCompliant(false)] public static void TextureImage2DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } /// [requires: NV_texture_multisample] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleCoverageNV")] + [CLSCompliant(false)] public static void TextureImage2DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } /// [requires: NV_texture_multisample] [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleNV")] + [CLSCompliant(false)] public static void TextureImage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } /// [requires: NV_texture_multisample] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleNV")] + [CLSCompliant(false)] public static void TextureImage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } /// [requires: NV_texture_multisample] [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleCoverageNV")] + [CLSCompliant(false)] public static void TextureImage3DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } /// [requires: NV_texture_multisample] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleCoverageNV")] + [CLSCompliant(false)] public static void TextureImage3DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } /// [requires: NV_texture_multisample] [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleNV")] + [CLSCompliant(false)] public static void TextureImage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } /// [requires: NV_texture_multisample] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleNV")] + [CLSCompliant(false)] public static void TextureImage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glTrackMatrixNV")] + [CLSCompliant(false)] public static void TrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.NvVertexProgram matrix, OpenTK.Graphics.OpenGL.NvVertexProgram transform) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glTrackMatrixNV")] + [CLSCompliant(false)] public static void TrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.NvVertexProgram matrix, OpenTK.Graphics.OpenGL.NvVertexProgram transform) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] + [CLSCompliant(false)] public static void TransformFeedbackAttrib(Int32 count, Int32[] attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] + [CLSCompliant(false)] public static void TransformFeedbackAttrib(Int32 count, ref Int32 attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] + [CLSCompliant(false)] public static unsafe void TransformFeedbackAttrib(Int32 count, Int32* attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] + [CLSCompliant(false)] public static void TransformFeedbackAttrib(UInt32 count, Int32[] attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] + [CLSCompliant(false)] public static void TransformFeedbackAttrib(UInt32 count, ref Int32 attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] + [CLSCompliant(false)] public static unsafe void TransformFeedbackAttrib(UInt32 count, Int32* attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackStreamAttribsNV")] + [CLSCompliant(false)] public static void TransformFeedbackStreamAttrib(Int32 count, Int32[] attribs, Int32 nbuffers, Int32[] bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackStreamAttribsNV")] + [CLSCompliant(false)] public static void TransformFeedbackStreamAttrib(Int32 count, ref Int32 attribs, Int32 nbuffers, ref Int32 bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackStreamAttribsNV")] + [CLSCompliant(false)] public static unsafe void TransformFeedbackStreamAttrib(Int32 count, Int32* attribs, Int32 nbuffers, Int32* bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -120200,6 +123339,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(Int32 program, Int32 count, Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -120226,6 +123366,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(Int32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -120251,8 +123392,8 @@ namespace OpenTK.Graphics.OpenGL /// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] + [CLSCompliant(false)] public static unsafe void TransformFeedbackVaryings(Int32 program, Int32 count, Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -120278,8 +123419,8 @@ namespace OpenTK.Graphics.OpenGL /// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(UInt32 program, Int32 count, Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -120305,8 +123446,8 @@ namespace OpenTK.Graphics.OpenGL /// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(UInt32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_transform_feedback] @@ -120332,36 +123473,38 @@ namespace OpenTK.Graphics.OpenGL /// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] + [CLSCompliant(false)] public static unsafe void TransformFeedbackVaryings(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120430,6 +123573,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120464,6 +123608,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120497,8 +123642,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120532,8 +123677,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120567,8 +123712,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120602,8 +123747,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120637,8 +123782,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120707,6 +123852,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120741,6 +123887,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120774,8 +123921,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120809,8 +123956,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120844,8 +123991,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120879,8 +124026,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120914,8 +124061,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -120984,6 +124131,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121018,6 +124166,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121051,8 +124200,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121086,8 +124235,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64NV")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121121,8 +124270,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121156,8 +124305,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121191,8 +124340,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121261,6 +124410,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121295,6 +124445,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121328,8 +124479,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121363,8 +124514,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64NV")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121398,8 +124549,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121433,8 +124584,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_gpu_shader5] @@ -121468,45 +124619,48 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] + [CLSCompliant(false)] public static unsafe void UniformHandle(Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] + [CLSCompliant(false)] public static unsafe void UniformHandle(Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -121541,6 +124695,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64NV")] + [CLSCompliant(false)] public static void Uniform(Int32 location, Int64 value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -121574,8 +124729,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64NV")] + [CLSCompliant(false)] public static void Uniform(Int32 location, UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -121610,6 +124765,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] + [CLSCompliant(false)] public static void Uniform(Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -121644,6 +124800,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] + [CLSCompliant(false)] public static void Uniform(Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -121677,8 +124834,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform(Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -121712,8 +124869,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] + [CLSCompliant(false)] public static void Uniform(Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -121747,8 +124904,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] + [CLSCompliant(false)] public static void Uniform(Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: NV_shader_buffer_load] @@ -121782,8 +124939,8 @@ namespace OpenTK.Graphics.OpenGL /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] + [CLSCompliant(false)] public static unsafe void Uniform(Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] @@ -121792,15 +124949,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUGetSurfaceivNV")] + [CLSCompliant(false)] public static void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUGetSurfaceivNV")] + [CLSCompliant(false)] public static void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUGetSurfaceivNV")] + [CLSCompliant(false)] public static unsafe void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] @@ -121809,6 +124968,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUInitNV")] + [CLSCompliant(false)] public static void VDPAUInit([InAttribute, OutAttribute] T0[] vdpDevice, [InAttribute, OutAttribute] T1[] getProcAddress) where T0 : struct where T1 : struct @@ -121816,6 +124976,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUInitNV")] + [CLSCompliant(false)] public static void VDPAUInit([InAttribute, OutAttribute] T0[,] vdpDevice, [InAttribute, OutAttribute] T1[,] getProcAddress) where T0 : struct where T1 : struct @@ -121823,6 +124984,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUInitNV")] + [CLSCompliant(false)] public static void VDPAUInit([InAttribute, OutAttribute] T0[,,] vdpDevice, [InAttribute, OutAttribute] T1[,,] getProcAddress) where T0 : struct where T1 : struct @@ -121841,389 +125003,411 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUMapSurfacesNV")] + [CLSCompliant(false)] public static void VDPAUMapSurfaces(Int32 numSurfaces, IntPtr[] surfaces) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUMapSurfacesNV")] + [CLSCompliant(false)] public static void VDPAUMapSurfaces(Int32 numSurfaces, ref IntPtr surfaces) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUMapSurfacesNV")] + [CLSCompliant(false)] public static unsafe void VDPAUMapSurfaces(Int32 numSurfaces, IntPtr* surfaces) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref Int32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, Int32* textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32[] textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, ref UInt32 textureNames) where T0 : struct { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] + [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, UInt32* textureNames) where T0 : struct { throw new NotImplementedException(); } @@ -122234,15 +125418,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnmapSurfacesNV")] + [CLSCompliant(false)] public static void VDPAUUnmapSurfaces(Int32 numSurface, IntPtr[] surfaces) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnmapSurfacesNV")] + [CLSCompliant(false)] public static void VDPAUUnmapSurfaces(Int32 numSurface, ref IntPtr surfaces) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnmapSurfacesNV")] + [CLSCompliant(false)] public static unsafe void VDPAUUnmapSurfaces(Int32 numSurface, IntPtr* surfaces) { throw new NotImplementedException(); } /// [requires: NV_vdpau_interop] @@ -122255,15 +125441,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hvNV")] + [CLSCompliant(false)] public static void Vertex2h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hvNV")] + [CLSCompliant(false)] public static void Vertex2h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hvNV")] + [CLSCompliant(false)] public static unsafe void Vertex2h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -122272,15 +125460,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hvNV")] + [CLSCompliant(false)] public static void Vertex3h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hvNV")] + [CLSCompliant(false)] public static void Vertex3h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hvNV")] + [CLSCompliant(false)] public static unsafe void Vertex3h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] @@ -122289,15 +125479,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hvNV")] + [CLSCompliant(false)] public static void Vertex4h(Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hvNV")] + [CLSCompliant(false)] public static void Vertex4h(ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hvNV")] + [CLSCompliant(false)] public static unsafe void Vertex4h(Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_array_range] @@ -122306,18 +125498,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_array_range] [AutoGenerated(Category = "NV_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeNV")] + [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute] T1[] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_array_range] [AutoGenerated(Category = "NV_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeNV")] + [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute] T1[,] pointer) where T1 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_array_range] [AutoGenerated(Category = "NV_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeNV")] + [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute] T1[,,] pointer) where T1 : struct { throw new NotImplementedException(); } @@ -122362,6 +125557,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dNV")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Double x) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122397,8 +125593,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dNV")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122434,8 +125630,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122471,8 +125667,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122509,6 +125705,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fNV")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122544,8 +125741,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fNV")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122581,8 +125778,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122618,27 +125815,28 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hNV")] + [CLSCompliant(false)] public static void VertexAttrib1h(Int32 index, Half x) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hNV")] + [CLSCompliant(false)] public static void VertexAttrib1h(UInt32 index, Half x) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1h(Int32 index, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1h(UInt32 index, Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122675,6 +125873,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1sNV")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Int16 x) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122710,8 +125909,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1sNV")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122747,8 +125946,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122784,8 +125983,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122822,6 +126021,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dNV")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122857,8 +126057,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dNV")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122895,6 +126095,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122931,6 +126132,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -122966,8 +126168,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123003,8 +126205,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123040,8 +126242,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123077,8 +126279,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123115,6 +126317,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fNV")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123150,8 +126353,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fNV")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123188,6 +126391,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123224,6 +126428,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123259,8 +126464,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123296,8 +126501,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123333,8 +126538,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123370,45 +126575,48 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hNV")] + [CLSCompliant(false)] public static void VertexAttrib2h(Int32 index, Half x, Half y) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hNV")] + [CLSCompliant(false)] public static void VertexAttrib2h(UInt32 index, Half x, Half y) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] + [CLSCompliant(false)] public static void VertexAttrib2h(Int32 index, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] + [CLSCompliant(false)] public static void VertexAttrib2h(Int32 index, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2h(Int32 index, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] + [CLSCompliant(false)] public static void VertexAttrib2h(UInt32 index, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] + [CLSCompliant(false)] public static void VertexAttrib2h(UInt32 index, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2h(UInt32 index, Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123445,6 +126653,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2sNV")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123480,8 +126689,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2sNV")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123518,6 +126727,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123554,6 +126764,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123589,8 +126800,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123626,8 +126837,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123663,8 +126874,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123700,8 +126911,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123738,6 +126949,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dNV")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123773,8 +126985,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dNV")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123811,6 +127023,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123847,6 +127060,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123882,8 +127096,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123919,8 +127133,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123956,8 +127170,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -123993,8 +127207,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124031,6 +127245,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fNV")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124066,8 +127281,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fNV")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124104,6 +127319,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124140,6 +127356,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124175,8 +127392,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124212,8 +127429,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124249,8 +127466,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124286,45 +127503,48 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hNV")] + [CLSCompliant(false)] public static void VertexAttrib3h(Int32 index, Half x, Half y, Half z) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hNV")] + [CLSCompliant(false)] public static void VertexAttrib3h(UInt32 index, Half x, Half y, Half z) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] + [CLSCompliant(false)] public static void VertexAttrib3h(Int32 index, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] + [CLSCompliant(false)] public static void VertexAttrib3h(Int32 index, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3h(Int32 index, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] + [CLSCompliant(false)] public static void VertexAttrib3h(UInt32 index, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] + [CLSCompliant(false)] public static void VertexAttrib3h(UInt32 index, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3h(UInt32 index, Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124361,6 +127581,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3sNV")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124396,8 +127617,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3sNV")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124434,6 +127655,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124470,6 +127692,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124505,8 +127728,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124542,8 +127765,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124579,8 +127802,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124616,8 +127839,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124654,6 +127877,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124689,8 +127913,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124727,6 +127951,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124763,6 +127988,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124798,8 +128024,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124835,8 +128061,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124872,8 +128098,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124909,8 +128135,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124947,6 +128173,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -124982,8 +128209,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125020,6 +128247,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125056,6 +128284,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125091,8 +128320,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125128,8 +128357,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125165,8 +128394,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125202,45 +128431,48 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hNV")] + [CLSCompliant(false)] public static void VertexAttrib4h(Int32 index, Half x, Half y, Half z, Half w) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hNV")] + [CLSCompliant(false)] public static void VertexAttrib4h(UInt32 index, Half x, Half y, Half z, Half w) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] + [CLSCompliant(false)] public static void VertexAttrib4h(Int32 index, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] + [CLSCompliant(false)] public static void VertexAttrib4h(Int32 index, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4h(Int32 index, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] + [CLSCompliant(false)] public static void VertexAttrib4h(UInt32 index, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] + [CLSCompliant(false)] public static void VertexAttrib4h(UInt32 index, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4h(UInt32 index, Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125277,6 +128509,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4sNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125312,8 +128545,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4sNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125350,6 +128583,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125386,6 +128620,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125421,8 +128656,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125458,8 +128693,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125495,8 +128730,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125532,8 +128767,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125570,6 +128805,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125605,8 +128841,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125643,6 +128879,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125679,6 +128916,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125714,8 +128952,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125751,8 +128989,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125788,8 +129026,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -125825,8 +129063,8 @@ namespace OpenTK.Graphics.OpenGL /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] @@ -125858,6 +129096,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribFormatNV")] + [CLSCompliant(false)] public static void VertexAttribFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, bool normalized, Int32 stride) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] @@ -125888,226 +129127,238 @@ namespace OpenTK.Graphics.OpenGL /// The distance between elements within the buffer. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribFormatNV")] + [CLSCompliant(false)] public static void VertexAttribFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, bool normalized, Int32 stride) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribIFormatNV")] + [CLSCompliant(false)] public static void VertexAttribIFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribIFormatNV")] + [CLSCompliant(false)] public static void VertexAttribIFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64NV")] + [CLSCompliant(false)] public static void VertexAttribL1(Int32 index, Int64 x) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64NV")] + [CLSCompliant(false)] public static void VertexAttribL1(UInt32 index, Int64 x) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(UInt32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64NV")] + [CLSCompliant(false)] public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64NV")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, Int64 x, Int64 y) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64NV")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, Int64 x, Int64 y) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, Int64[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, ref Int64 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL2(Int32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, Int64[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, ref Int64 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL2(UInt32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64NV")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, UInt64 x, UInt64 y) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, UInt64[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, ref UInt64 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL2(UInt32 index, UInt64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64NV")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64NV")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, Int64[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, ref Int64 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL3(Int32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, Int64[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, ref Int64 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL3(UInt32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64NV")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, UInt64[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, ref UInt64 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL3(UInt32 index, UInt64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64NV")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64NV")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, Int64[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, ref Int64 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL4(Int32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, Int64[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, ref Int64 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL4(UInt32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64NV")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, UInt64[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, ref UInt64 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribL4(UInt32 index, UInt64* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] + [CLSCompliant(false)] public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new NotImplementedException(); } /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] + [CLSCompliant(false)] public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -126144,6 +129395,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -126180,6 +129432,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -126218,6 +129471,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -126256,6 +129510,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -126294,6 +129549,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } @@ -126331,8 +129587,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] @@ -126368,8 +129624,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -126407,8 +129663,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -126446,8 +129702,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } @@ -126485,486 +129741,520 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] + [CLSCompliant(false)] public static void VertexAttribs1(Int32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] + [CLSCompliant(false)] public static void VertexAttribs1(Int32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs1(Int32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] + [CLSCompliant(false)] public static void VertexAttribs1(UInt32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] + [CLSCompliant(false)] public static void VertexAttribs1(UInt32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs1(UInt32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] + [CLSCompliant(false)] public static void VertexAttribs1(Int32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] + [CLSCompliant(false)] public static void VertexAttribs1(Int32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs1(Int32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] + [CLSCompliant(false)] public static void VertexAttribs1(UInt32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] + [CLSCompliant(false)] public static void VertexAttribs1(UInt32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs1(UInt32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] + [CLSCompliant(false)] public static void VertexAttribs1h(Int32 index, Int32 n, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] + [CLSCompliant(false)] public static void VertexAttribs1h(Int32 index, Int32 n, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs1h(Int32 index, Int32 n, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] + [CLSCompliant(false)] public static void VertexAttribs1h(UInt32 index, Int32 n, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] + [CLSCompliant(false)] public static void VertexAttribs1h(UInt32 index, Int32 n, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs1h(UInt32 index, Int32 n, Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] + [CLSCompliant(false)] public static void VertexAttribs1(Int32 index, Int32 count, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] + [CLSCompliant(false)] public static void VertexAttribs1(Int32 index, Int32 count, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs1(Int32 index, Int32 count, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] + [CLSCompliant(false)] public static void VertexAttribs1(UInt32 index, Int32 count, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] + [CLSCompliant(false)] public static void VertexAttribs1(UInt32 index, Int32 count, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs1(UInt32 index, Int32 count, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] + [CLSCompliant(false)] public static void VertexAttribs2(Int32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] + [CLSCompliant(false)] public static void VertexAttribs2(Int32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs2(Int32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] + [CLSCompliant(false)] public static void VertexAttribs2(UInt32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] + [CLSCompliant(false)] public static void VertexAttribs2(UInt32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs2(UInt32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] + [CLSCompliant(false)] public static void VertexAttribs2(Int32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] + [CLSCompliant(false)] public static void VertexAttribs2(Int32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs2(Int32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] + [CLSCompliant(false)] public static void VertexAttribs2(UInt32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] + [CLSCompliant(false)] public static void VertexAttribs2(UInt32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs2(UInt32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] + [CLSCompliant(false)] public static void VertexAttribs2h(Int32 index, Int32 n, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] + [CLSCompliant(false)] public static void VertexAttribs2h(Int32 index, Int32 n, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs2h(Int32 index, Int32 n, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] + [CLSCompliant(false)] public static void VertexAttribs2h(UInt32 index, Int32 n, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] + [CLSCompliant(false)] public static void VertexAttribs2h(UInt32 index, Int32 n, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs2h(UInt32 index, Int32 n, Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] + [CLSCompliant(false)] public static void VertexAttribs2(Int32 index, Int32 count, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] + [CLSCompliant(false)] public static void VertexAttribs2(Int32 index, Int32 count, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs2(Int32 index, Int32 count, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] + [CLSCompliant(false)] public static void VertexAttribs2(UInt32 index, Int32 count, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] + [CLSCompliant(false)] public static void VertexAttribs2(UInt32 index, Int32 count, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs2(UInt32 index, Int32 count, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] + [CLSCompliant(false)] public static void VertexAttribs3(Int32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] + [CLSCompliant(false)] public static void VertexAttribs3(Int32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs3(Int32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] + [CLSCompliant(false)] public static void VertexAttribs3(UInt32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] + [CLSCompliant(false)] public static void VertexAttribs3(UInt32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs3(UInt32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] + [CLSCompliant(false)] public static void VertexAttribs3(Int32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] + [CLSCompliant(false)] public static void VertexAttribs3(Int32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs3(Int32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] + [CLSCompliant(false)] public static void VertexAttribs3(UInt32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] + [CLSCompliant(false)] public static void VertexAttribs3(UInt32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs3(UInt32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] + [CLSCompliant(false)] public static void VertexAttribs3h(Int32 index, Int32 n, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] + [CLSCompliant(false)] public static void VertexAttribs3h(Int32 index, Int32 n, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs3h(Int32 index, Int32 n, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] + [CLSCompliant(false)] public static void VertexAttribs3h(UInt32 index, Int32 n, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] + [CLSCompliant(false)] public static void VertexAttribs3h(UInt32 index, Int32 n, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs3h(UInt32 index, Int32 n, Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] + [CLSCompliant(false)] public static void VertexAttribs3(Int32 index, Int32 count, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] + [CLSCompliant(false)] public static void VertexAttribs3(Int32 index, Int32 count, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs3(Int32 index, Int32 count, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] + [CLSCompliant(false)] public static void VertexAttribs3(UInt32 index, Int32 count, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] + [CLSCompliant(false)] public static void VertexAttribs3(UInt32 index, Int32 count, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs3(UInt32 index, Int32 count, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(Int32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(Int32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4(Int32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(UInt32 index, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(UInt32 index, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4(UInt32 index, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(Int32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(Int32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4(Int32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(UInt32 index, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(UInt32 index, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4(UInt32 index, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] + [CLSCompliant(false)] public static void VertexAttribs4h(Int32 index, Int32 n, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] + [CLSCompliant(false)] public static void VertexAttribs4h(Int32 index, Int32 n, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4h(Int32 index, Int32 n, Half* v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] + [CLSCompliant(false)] public static void VertexAttribs4h(UInt32 index, Int32 n, Half[] v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] + [CLSCompliant(false)] public static void VertexAttribs4h(UInt32 index, Int32 n, ref Half v) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4h(UInt32 index, Int32 n, Half* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] + [CLSCompliant(false)] public static void VertexAttribs4(Int32 index, Int32 count, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] + [CLSCompliant(false)] public static void VertexAttribs4(Int32 index, Int32 count, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4(Int32 index, Int32 count, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] + [CLSCompliant(false)] public static void VertexAttribs4(UInt32 index, Int32 count, Int16[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] + [CLSCompliant(false)] public static void VertexAttribs4(UInt32 index, Int32 count, ref Int16 v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4(UInt32 index, Int32 count, Int16* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(Int32 index, Int32 count, Byte[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(Int32 index, Int32 count, ref Byte v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4(Int32 index, Int32 count, Byte* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(UInt32 index, Int32 count, Byte[] v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] + [CLSCompliant(false)] public static void VertexAttribs4(UInt32 index, Int32 count, ref Byte v) { throw new NotImplementedException(); } /// [requires: NV_vertex_program] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] + [CLSCompliant(false)] public static unsafe void VertexAttribs4(UInt32 index, Int32 count, Byte* v) { throw new NotImplementedException(); } /// [requires: NV_vertex_buffer_unified_memory] @@ -126976,148 +130266,158 @@ namespace OpenTK.Graphics.OpenGL public static void VertexWeighth(Half weight) { throw new NotImplementedException(); } /// [requires: NV_half_float] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexWeighthvNV")] + [CLSCompliant(false)] public static unsafe void VertexWeighth(Half* weight) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] Int32[] sequence_num, [OutAttribute] Int64[] capture_time) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] out Int32 sequence_num, [OutAttribute] out Int64 capture_time) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] + [CLSCompliant(false)] public static unsafe OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] Int32* sequence_num, [OutAttribute] Int64* capture_time) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] UInt32[] sequence_num, [OutAttribute] UInt64[] capture_time) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] out UInt32 sequence_num, [OutAttribute] out UInt64 capture_time) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] + [CLSCompliant(false)] public static unsafe OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] UInt32* sequence_num, [OutAttribute] UInt64* capture_time) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Double[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, ref Double @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] + [CLSCompliant(false)] public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Double* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Double[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, ref Double @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] + [CLSCompliant(false)] public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Double* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, ref Single @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] + [CLSCompliant(false)] public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Single* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, ref Single @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] + [CLSCompliant(false)] public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Single* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] + [CLSCompliant(false)] public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] + [CLSCompliant(false)] public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: NV_video_capture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] + [CLSCompliant(false)] public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] + [CLSCompliant(false)] public static void WeightPath(Int32 resultPath, Int32 numPaths, Int32[] paths, Single[] weights) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] + [CLSCompliant(false)] public static void WeightPath(Int32 resultPath, Int32 numPaths, ref Int32 paths, ref Single weights) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] + [CLSCompliant(false)] public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, Int32* paths, Single* weights) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] + [CLSCompliant(false)] public static void WeightPath(UInt32 resultPath, Int32 numPaths, UInt32[] paths, Single[] weights) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] + [CLSCompliant(false)] public static void WeightPath(UInt32 resultPath, Int32 numPaths, ref UInt32 paths, ref Single weights) { throw new NotImplementedException(); } /// [requires: NV_path_rendering] - [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] + [CLSCompliant(false)] public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, UInt32* paths, Single* weights) { throw new NotImplementedException(); } } @@ -127138,6 +130438,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NVX_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNVX")] + [CLSCompliant(false)] public static void BeginConditionalRender(Int32 id) { throw new NotImplementedException(); } /// [requires: NVX_conditional_render] @@ -127153,8 +130454,8 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "NVX_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNVX")] + [CLSCompliant(false)] public static void BeginConditionalRender(UInt32 id) { throw new NotImplementedException(); } /// [requires: NVX_conditional_render] @@ -127175,15 +130476,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] + [CLSCompliant(false)] public static void Bitmapx(Int32 width, Int32 height, int xorig, int yorig, int xmove, int ymove, Byte[] bitmap) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] + [CLSCompliant(false)] public static void Bitmapx(Int32 width, Int32 height, int xorig, int yorig, int xmove, int ymove, ref Byte bitmap) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] + [CLSCompliant(false)] public static unsafe void Bitmapx(Int32 width, Int32 height, int xorig, int yorig, int xmove, int ymove, Byte* bitmap) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127227,6 +130530,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, Single[] equation) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -127243,6 +130547,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] + [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, ref Single equation) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -127258,21 +130563,23 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] + [CLSCompliant(false)] public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, Single* equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] + [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, int[] equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] + [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, ref int equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] + [CLSCompliant(false)] public static unsafe void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, int* equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127281,15 +130588,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] + [CLSCompliant(false)] public static void Color3x(int[] components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] + [CLSCompliant(false)] public static void Color3x(ref int components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] + [CLSCompliant(false)] public static unsafe void Color3x(int* components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127298,15 +130607,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] + [CLSCompliant(false)] public static void Color4x(int[] components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] + [CLSCompliant(false)] public static void Color4x(ref int components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] + [CLSCompliant(false)] public static unsafe void Color4x(int* components) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127315,11 +130626,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] + [CLSCompliant(false)] public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -127347,8 +130659,8 @@ namespace OpenTK.Graphics.OpenGL public static void EvalCoord1x(int u) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xvOES")] + [CLSCompliant(false)] public static unsafe void EvalCoord1x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127357,28 +130669,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] + [CLSCompliant(false)] public static void EvalCoord2x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] + [CLSCompliant(false)] public static void EvalCoord2x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] + [CLSCompliant(false)] public static unsafe void EvalCoord2x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] + [CLSCompliant(false)] public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, int[] buffer) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] + [CLSCompliant(false)] public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, ref int buffer) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] + [CLSCompliant(false)] public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, int* buffer) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127387,11 +130703,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] + [CLSCompliant(false)] public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int[] param) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] + [CLSCompliant(false)] public static unsafe void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int* param) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -127433,6 +130750,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] + [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute] Single[] equation) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -127449,6 +130767,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] + [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute] out Single equation) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -127464,90 +130783,103 @@ namespace OpenTK.Graphics.OpenGL /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] + [CLSCompliant(false)] public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute] Single* equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] + [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute] int[] equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] + [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute] out int equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] + [CLSCompliant(false)] public static unsafe void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute] int* equation) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] + [CLSCompliant(false)] public static void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] + [CLSCompliant(false)] public static void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] public static int GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] public static unsafe void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] + [CLSCompliant(false)] public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] + [CLSCompliant(false)] public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] + [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] + [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] + [CLSCompliant(false)] public static unsafe void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] + [CLSCompliant(false)] public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute] int[] v) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] + [CLSCompliant(false)] public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute] out int v) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] + [CLSCompliant(false)] public static unsafe void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute] int* v) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127556,63 +130888,72 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] + [CLSCompliant(false)] public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] + [CLSCompliant(false)] public static unsafe void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] + [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] + [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] + [CLSCompliant(false)] public static unsafe void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexGenxvOES")] + [CLSCompliant(false)] public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexGenxvOES")] + [CLSCompliant(false)] public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexGenxvOES")] + [CLSCompliant(false)] public static unsafe void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] + [CLSCompliant(false)] public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] + [CLSCompliant(false)] public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] + [CLSCompliant(false)] public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] + [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] + [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] out int @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] + [CLSCompliant(false)] public static unsafe void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127620,8 +130961,8 @@ namespace OpenTK.Graphics.OpenGL public static void Indexx(int component) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxvOES")] + [CLSCompliant(false)] public static unsafe void Indexx(int* component) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127630,11 +130971,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] + [CLSCompliant(false)] public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int[] param) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] + [CLSCompliant(false)] public static unsafe void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int* param) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127643,11 +130985,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] + [CLSCompliant(false)] public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] + [CLSCompliant(false)] public static unsafe void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127656,28 +130999,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] + [CLSCompliant(false)] public static void LoadMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] + [CLSCompliant(false)] public static void LoadMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] + [CLSCompliant(false)] public static unsafe void LoadMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] + [CLSCompliant(false)] public static void LoadTransposeMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] + [CLSCompliant(false)] public static void LoadTransposeMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] + [CLSCompliant(false)] public static unsafe void LoadTransposeMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127702,11 +131049,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] + [CLSCompliant(false)] public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int[] param) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] + [CLSCompliant(false)] public static unsafe void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int* param) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127723,6 +131071,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] + [CLSCompliant(false)] public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127738,8 +131087,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] + [CLSCompliant(false)] public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127755,8 +131104,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127772,8 +131121,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127781,8 +131130,8 @@ namespace OpenTK.Graphics.OpenGL public static void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, int s) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127799,6 +131148,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127814,8 +131164,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127832,6 +131182,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127848,6 +131199,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127863,8 +131215,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127880,8 +131232,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127897,8 +131249,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127914,8 +131266,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -127924,15 +131276,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127949,6 +131303,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127964,8 +131319,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127982,6 +131337,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -127998,6 +131354,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128013,8 +131370,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128030,8 +131387,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128047,8 +131404,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128064,8 +131421,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128074,15 +131431,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128099,6 +131458,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r, Byte q) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128114,8 +131474,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r, SByte q) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128132,6 +131492,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128148,6 +131509,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128163,8 +131525,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128180,8 +131542,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128197,8 +131559,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128214,8 +131576,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128224,41 +131586,47 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] + [CLSCompliant(false)] public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] + [CLSCompliant(false)] public static unsafe void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] + [CLSCompliant(false)] public static void MultMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] + [CLSCompliant(false)] public static void MultMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] + [CLSCompliant(false)] public static unsafe void MultMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] + [CLSCompliant(false)] public static void MultTransposeMatrixx(int[] m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] + [CLSCompliant(false)] public static void MultTransposeMatrixx(ref int m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] + [CLSCompliant(false)] public static unsafe void MultTransposeMatrixx(int* m) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128267,15 +131635,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] + [CLSCompliant(false)] public static void Normal3x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] + [CLSCompliant(false)] public static void Normal3x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] + [CLSCompliant(false)] public static unsafe void Normal3x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_single_precision] @@ -128321,11 +131691,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] + [CLSCompliant(false)] public static void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] + [CLSCompliant(false)] public static unsafe void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128338,43 +131709,47 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static void PrioritizeTexturesx(Int32 n, Int32[] textures, int[] priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static void PrioritizeTexturesx(Int32 n, ref Int32 textures, ref int priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static unsafe void PrioritizeTexturesx(Int32 n, Int32* textures, int* priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static void PrioritizeTexturesx(Int32 n, UInt32[] textures, int[] priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static void PrioritizeTexturesx(Int32 n, ref UInt32 textures, ref int priorities) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] + [CLSCompliant(false)] public static unsafe void PrioritizeTexturesx(Int32 n, UInt32* textures, int* priorities) { throw new NotImplementedException(); } /// [requires: OES_query_matrix] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] + [CLSCompliant(false)] public static Int32 QueryMatrixx([OutAttribute] int[] mantissa, [OutAttribute] Int32[] exponent) { throw new NotImplementedException(); } /// [requires: OES_query_matrix] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] + [CLSCompliant(false)] public static Int32 QueryMatrixx([OutAttribute] out int mantissa, [OutAttribute] out Int32 exponent) { throw new NotImplementedException(); } /// [requires: OES_query_matrix] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] + [CLSCompliant(false)] public static unsafe Int32 QueryMatrixx([OutAttribute] int* mantissa, [OutAttribute] Int32* exponent) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128383,15 +131758,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] + [CLSCompliant(false)] public static void RasterPos2x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] + [CLSCompliant(false)] public static void RasterPos2x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] + [CLSCompliant(false)] public static unsafe void RasterPos2x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128400,15 +131777,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] + [CLSCompliant(false)] public static void RasterPos3x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] + [CLSCompliant(false)] public static void RasterPos3x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] + [CLSCompliant(false)] public static unsafe void RasterPos3x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128417,15 +131796,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] + [CLSCompliant(false)] public static void RasterPos4x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] + [CLSCompliant(false)] public static void RasterPos4x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] + [CLSCompliant(false)] public static unsafe void RasterPos4x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128434,15 +131815,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] + [CLSCompliant(false)] public static void Rectx(int[] v1, int[] v2) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] + [CLSCompliant(false)] public static void Rectx(ref int v1, ref int v2) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] + [CLSCompliant(false)] public static unsafe void Rectx(int* v1, int* v2) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128482,6 +131865,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] + [CLSCompliant(false)] public static void TexCoord1(Byte s) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128492,8 +131876,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] + [CLSCompliant(false)] public static void TexCoord1(SByte s) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128504,8 +131888,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord1(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128516,8 +131900,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord1(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128525,8 +131909,8 @@ namespace OpenTK.Graphics.OpenGL public static void TexCoord1x(int s) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord1x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128538,6 +131922,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] + [CLSCompliant(false)] public static void TexCoord2(Byte s, Byte t) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128548,8 +131933,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] + [CLSCompliant(false)] public static void TexCoord2(SByte s, SByte t) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128561,6 +131946,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static void TexCoord2(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128572,6 +131958,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static void TexCoord2(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128582,8 +131969,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord2(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128594,8 +131981,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static void TexCoord2(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128606,8 +131993,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static void TexCoord2(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128618,8 +132005,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord2(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128628,15 +132015,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] + [CLSCompliant(false)] public static void TexCoord2x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] + [CLSCompliant(false)] public static void TexCoord2x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord2x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128648,6 +132037,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] + [CLSCompliant(false)] public static void TexCoord3(Byte s, Byte t, Byte r) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128658,8 +132048,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] + [CLSCompliant(false)] public static void TexCoord3(SByte s, SByte t, SByte r) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128671,6 +132061,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static void TexCoord3(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128682,6 +132073,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static void TexCoord3(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128692,8 +132084,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord3(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128704,8 +132096,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static void TexCoord3(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128716,8 +132108,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static void TexCoord3(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128728,8 +132120,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord3(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128738,15 +132130,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] + [CLSCompliant(false)] public static void TexCoord3x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] + [CLSCompliant(false)] public static void TexCoord3x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord3x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128758,6 +132152,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")] + [CLSCompliant(false)] public static void TexCoord4(Byte s, Byte t, Byte r, Byte q) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128768,8 +132163,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")] + [CLSCompliant(false)] public static void TexCoord4(SByte s, SByte t, SByte r, SByte q) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128781,6 +132176,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static void TexCoord4(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128792,6 +132188,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static void TexCoord4(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128802,8 +132199,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord4(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128814,8 +132211,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static void TexCoord4(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128826,8 +132223,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static void TexCoord4(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128838,8 +132235,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord4(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128848,15 +132245,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] + [CLSCompliant(false)] public static void TexCoord4x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] + [CLSCompliant(false)] public static void TexCoord4x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] + [CLSCompliant(false)] public static unsafe void TexCoord4x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128865,11 +132264,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] + [CLSCompliant(false)] public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] + [CLSCompliant(false)] public static unsafe void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128878,11 +132278,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxvOES")] + [CLSCompliant(false)] public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxvOES")] + [CLSCompliant(false)] public static unsafe void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128891,11 +132292,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] + [CLSCompliant(false)] public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int[] @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] + [CLSCompliant(false)] public static unsafe void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int* @params) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128911,6 +132313,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] + [CLSCompliant(false)] public static void Vertex2(Byte x) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128921,8 +132324,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] + [CLSCompliant(false)] public static void Vertex2(SByte x) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128934,6 +132337,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] + [CLSCompliant(false)] public static void Vertex2(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128944,8 +132348,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex2(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128956,8 +132360,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] + [CLSCompliant(false)] public static void Vertex2(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128968,8 +132372,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex2(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -128978,11 +132382,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] + [CLSCompliant(false)] public static void Vertex2x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] + [CLSCompliant(false)] public static unsafe void Vertex2x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -128994,6 +132399,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] + [CLSCompliant(false)] public static void Vertex3(Byte x, Byte y) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129004,8 +132410,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] + [CLSCompliant(false)] public static void Vertex3(SByte x, SByte y) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129017,6 +132423,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static void Vertex3(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129028,6 +132435,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static void Vertex3(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129038,8 +132446,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex3(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129050,8 +132458,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static void Vertex3(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129062,8 +132470,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static void Vertex3(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129074,8 +132482,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex3(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -129084,15 +132492,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] + [CLSCompliant(false)] public static void Vertex3x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] + [CLSCompliant(false)] public static void Vertex3x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] + [CLSCompliant(false)] public static unsafe void Vertex3x(int* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129104,6 +132514,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] + [CLSCompliant(false)] public static void Vertex4(Byte x, Byte y, Byte z) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129114,8 +132525,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] + [CLSCompliant(false)] public static void Vertex4(SByte x, SByte y, SByte z) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129127,6 +132538,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static void Vertex4(Byte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129138,6 +132550,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static void Vertex4(ref Byte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129148,8 +132561,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex4(Byte* coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129160,8 +132573,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static void Vertex4(SByte[] coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129172,8 +132585,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static void Vertex4(ref SByte coords) { throw new NotImplementedException(); } /// [requires: OES_byte_coordinates] @@ -129184,8 +132597,8 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] + [CLSCompliant(false)] public static unsafe void Vertex4(SByte* coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] @@ -129194,15 +132607,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] + [CLSCompliant(false)] public static void Vertex4x(int[] coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] + [CLSCompliant(false)] public static void Vertex4x(ref int coords) { throw new NotImplementedException(); } /// [requires: OES_fixed_point] - [System.CLSCompliant(false)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] + [CLSCompliant(false)] public static unsafe void Vertex4x(int* coords) { throw new NotImplementedException(); } } @@ -129248,6 +132663,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129269,6 +132685,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, ref Single @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129289,8 +132706,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameters are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] + [CLSCompliant(false)] public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129313,6 +132730,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129335,6 +132753,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, ref Single @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129356,8 +132775,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ColorTableTargetSgi overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] + [CLSCompliant(false)] public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129379,6 +132798,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129400,6 +132820,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129420,8 +132841,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameters are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] + [CLSCompliant(false)] public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129444,6 +132865,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129466,6 +132888,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129487,8 +132910,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ColorTableTargetSgi overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] + [CLSCompliant(false)] public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129561,6 +132984,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] table) where T5 : struct { throw new NotImplementedException(); } @@ -129599,6 +133023,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] table) where T5 : struct { throw new NotImplementedException(); } @@ -129637,6 +133062,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] table) where T5 : struct { throw new NotImplementedException(); } @@ -129751,6 +133177,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[] table) where T5 : struct { throw new NotImplementedException(); } @@ -129790,6 +133217,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,] table) where T5 : struct { throw new NotImplementedException(); } @@ -129829,6 +133257,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T5[,,] table) where T5 : struct { throw new NotImplementedException(); } @@ -129954,6 +133383,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129975,6 +133405,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -129995,8 +133426,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameter will be stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130019,6 +133450,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130041,6 +133473,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130062,8 +133495,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ColorTableTargetSgi overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130085,6 +133518,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130106,6 +133540,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130126,8 +133561,8 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to an array where the values of the parameter will be stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130150,6 +133585,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130172,6 +133608,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130193,8 +133630,8 @@ namespace OpenTK.Graphics.OpenGL /// /// [Obsolete("Use ColorTableTargetSgi overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: SGI_color_table] @@ -130247,6 +133684,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] table) where T3 : struct { throw new NotImplementedException(); } @@ -130275,6 +133713,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] table) where T3 : struct { throw new NotImplementedException(); } @@ -130303,6 +133742,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] table) where T3 : struct { throw new NotImplementedException(); } @@ -130387,6 +133827,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] table) where T3 : struct { throw new NotImplementedException(); } @@ -130416,6 +133857,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] table) where T3 : struct { throw new NotImplementedException(); } @@ -130445,6 +133887,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] table) where T3 : struct { throw new NotImplementedException(); } @@ -130484,159 +133927,184 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: SGIS_detail_texture] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glDetailTexFuncSGIS")] + [CLSCompliant(false)] public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single[] points) { throw new NotImplementedException(); } /// [requires: SGIS_detail_texture] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glDetailTexFuncSGIS")] + [CLSCompliant(false)] public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, ref Single points) { throw new NotImplementedException(); } /// [requires: SGIS_detail_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glDetailTexFuncSGIS")] + [CLSCompliant(false)] public static unsafe void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single* points) { throw new NotImplementedException(); } /// [requires: SGIS_fog_function] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glFogFuncSGIS")] + [CLSCompliant(false)] public static void FogFunc(Int32 n, Single[] points) { throw new NotImplementedException(); } /// [requires: SGIS_fog_function] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glFogFuncSGIS")] + [CLSCompliant(false)] public static void FogFunc(Int32 n, ref Single points) { throw new NotImplementedException(); } /// [requires: SGIS_fog_function] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glFogFuncSGIS")] + [CLSCompliant(false)] public static unsafe void FogFunc(Int32 n, Single* points) { throw new NotImplementedException(); } /// [requires: SGIS_detail_texture] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] + [CLSCompliant(false)] public static Single GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } /// [requires: SGIS_detail_texture] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] + [CLSCompliant(false)] public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute] Single[] points) { throw new NotImplementedException(); } /// [requires: SGIS_detail_texture] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] + [CLSCompliant(false)] public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute] out Single points) { throw new NotImplementedException(); } /// [requires: SGIS_detail_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] + [CLSCompliant(false)] public static unsafe void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute] Single* points) { throw new NotImplementedException(); } /// [requires: SGIS_fog_function] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] + [CLSCompliant(false)] public static Single GetFogFunc() { throw new NotImplementedException(); } /// [requires: SGIS_fog_function] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] + [CLSCompliant(false)] public static void GetFogFunc([OutAttribute] Single[] points) { throw new NotImplementedException(); } /// [requires: SGIS_fog_function] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] + [CLSCompliant(false)] public static void GetFogFunc([OutAttribute] out Single points) { throw new NotImplementedException(); } /// [requires: SGIS_fog_function] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] + [CLSCompliant(false)] public static unsafe void GetFogFunc([OutAttribute] Single* points) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static Single GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static Single GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIS_sharpen_texture] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] + [CLSCompliant(false)] public static Single GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } /// [requires: SGIS_sharpen_texture] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] + [CLSCompliant(false)] public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute] Single[] points) { throw new NotImplementedException(); } /// [requires: SGIS_sharpen_texture] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] + [CLSCompliant(false)] public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute] out Single points) { throw new NotImplementedException(); } /// [requires: SGIS_sharpen_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] + [CLSCompliant(false)] public static unsafe void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute] Single* points) { throw new NotImplementedException(); } /// [requires: SGIS_texture_filter4] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glGetTexFilterFuncSGIS")] + [CLSCompliant(false)] public static void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute] Single[] weights) { throw new NotImplementedException(); } /// [requires: SGIS_texture_filter4] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glGetTexFilterFuncSGIS")] + [CLSCompliant(false)] public static void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute] out Single weights) { throw new NotImplementedException(); } /// [requires: SGIS_texture_filter4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glGetTexFilterFuncSGIS")] + [CLSCompliant(false)] public static unsafe void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute] Single* weights) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] @@ -130650,22 +134118,24 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIS_pixel_texture] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] + [CLSCompliant(false)] public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] @@ -130679,22 +134149,24 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIS_pixel_texture] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIS_pixel_texture] [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] + [CLSCompliant(false)] public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIS_point_parameters] @@ -130737,6 +134209,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGIS_point_parameters", Version = "", EntryPoint = "glPointParameterfvSGIS")] + [CLSCompliant(false)] public static void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIS_point_parameters] @@ -130757,8 +134230,8 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_point_parameters", Version = "", EntryPoint = "glPointParameterfvSGIS")] + [CLSCompliant(false)] public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIS_multisample] @@ -130776,28 +134249,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIS_sharpen_texture] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glSharpenTexFuncSGIS")] + [CLSCompliant(false)] public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single[] points) { throw new NotImplementedException(); } /// [requires: SGIS_sharpen_texture] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glSharpenTexFuncSGIS")] + [CLSCompliant(false)] public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, ref Single points) { throw new NotImplementedException(); } /// [requires: SGIS_sharpen_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glSharpenTexFuncSGIS")] + [CLSCompliant(false)] public static unsafe void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single* points) { throw new NotImplementedException(); } /// [requires: SGIS_texture_filter4] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glTexFilterFuncSGIS")] + [CLSCompliant(false)] public static void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, Single[] weights) { throw new NotImplementedException(); } /// [requires: SGIS_texture_filter4] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glTexFilterFuncSGIS")] + [CLSCompliant(false)] public static void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, ref Single weights) { throw new NotImplementedException(); } /// [requires: SGIS_texture_filter4] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glTexFilterFuncSGIS")] + [CLSCompliant(false)] public static unsafe void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, Single* weights) { throw new NotImplementedException(); } /// [requires: SGIS_texture4D] @@ -130806,18 +134283,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIS_texture4D] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] + [CLSCompliant(false)] public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: SGIS_texture4D] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] + [CLSCompliant(false)] public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } /// [requires: SGIS_texture4D] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] + [CLSCompliant(false)] public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -130834,18 +134314,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIS_texture4D] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexSubImage4DSGIS")] + [CLSCompliant(false)] public static void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T12[] pixels) where T12 : struct { throw new NotImplementedException(); } /// [requires: SGIS_texture4D] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexSubImage4DSGIS")] + [CLSCompliant(false)] public static void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T12[,] pixels) where T12 : struct { throw new NotImplementedException(); } /// [requires: SGIS_texture4D] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexSubImage4DSGIS")] + [CLSCompliant(false)] public static void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T12[,,] pixels) where T12 : struct { throw new NotImplementedException(); } @@ -130866,69 +134349,78 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: SGIX_async] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glAsyncMarkerSGIX")] + [CLSCompliant(false)] public static void AsyncMarker(Int32 marker) { throw new NotImplementedException(); } /// [requires: SGIX_async] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glAsyncMarkerSGIX")] + [CLSCompliant(false)] public static void AsyncMarker(UInt32 marker) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] + [CLSCompliant(false)] public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix 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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] + [CLSCompliant(false)] public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix 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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] + [CLSCompliant(false)] public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix 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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] + [CLSCompliant(false)] public static void DeformationMap3(OpenTK.Graphics.OpenGL.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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] + [CLSCompliant(false)] public static void DeformationMap3(OpenTK.Graphics.OpenGL.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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [Obsolete("Use FfdTargetSgix overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] + [CLSCompliant(false)] public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] + [CLSCompliant(false)] public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix 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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] + [CLSCompliant(false)] public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix 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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] + [CLSCompliant(false)] public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix 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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] + [CLSCompliant(false)] public static void DeformationMap3(OpenTK.Graphics.OpenGL.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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] + [CLSCompliant(false)] public static void DeformationMap3(OpenTK.Graphics.OpenGL.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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] [Obsolete("Use FfdTargetSgix overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] + [CLSCompliant(false)] public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.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) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] @@ -130942,36 +134434,37 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_polynomial_ffd] [Obsolete("Use FfdMaskSgix overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformSGIX")] public static void Deform(UInt32 mask) { throw new NotImplementedException(); } /// [requires: SGIX_async] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glDeleteAsyncMarkersSGIX")] + [CLSCompliant(false)] public static void DeleteAsyncMarkers(Int32 marker, Int32 range) { throw new NotImplementedException(); } /// [requires: SGIX_async] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glDeleteAsyncMarkersSGIX")] + [CLSCompliant(false)] public static void DeleteAsyncMarkers(UInt32 marker, Int32 range) { throw new NotImplementedException(); } /// [requires: SGIX_async] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] + [CLSCompliant(false)] public static Int32 FinishAsync([OutAttribute] out Int32 markerp) { throw new NotImplementedException(); } /// [requires: SGIX_async] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] + [CLSCompliant(false)] public static unsafe Int32 FinishAsync([OutAttribute] Int32* markerp) { throw new NotImplementedException(); } /// [requires: SGIX_async] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] + [CLSCompliant(false)] public static Int32 FinishAsync([OutAttribute] out UInt32 markerp) { throw new NotImplementedException(); } /// [requires: SGIX_async] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] + [CLSCompliant(false)] public static unsafe Int32 FinishAsync([OutAttribute] UInt32* markerp) { throw new NotImplementedException(); } /// [requires: SGIX_flush_raster] @@ -130988,11 +134481,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightfvSGIX")] + [CLSCompliant(false)] public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightfvSGIX")] + [CLSCompliant(false)] public static unsafe void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] @@ -131001,11 +134495,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightivSGIX")] + [CLSCompliant(false)] public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightivSGIX")] + [CLSCompliant(false)] public static unsafe void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] @@ -131019,22 +134514,24 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] + [CLSCompliant(false)] public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] + [CLSCompliant(false)] public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] + [CLSCompliant(false)] public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [Obsolete("Use FragmentLightModelParameterSgix overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] + [CLSCompliant(false)] public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] @@ -131048,22 +134545,24 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] + [CLSCompliant(false)] public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] + [CLSCompliant(false)] public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] + [CLSCompliant(false)] public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [Obsolete("Use FragmentLightModelParameterSgix overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] + [CLSCompliant(false)] public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] @@ -131072,11 +134571,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialfvSGIX")] + [CLSCompliant(false)] public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialfvSGIX")] + [CLSCompliant(false)] public static unsafe void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] @@ -131085,11 +134585,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialivSGIX")] + [CLSCompliant(false)] public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialivSGIX")] + [CLSCompliant(false)] public static unsafe void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_framezoom] @@ -131102,54 +134603,62 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightfvSGIX")] + [CLSCompliant(false)] public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightfvSGIX")] + [CLSCompliant(false)] public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightfvSGIX")] + [CLSCompliant(false)] public static unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightivSGIX")] + [CLSCompliant(false)] public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightivSGIX")] + [CLSCompliant(false)] public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightivSGIX")] + [CLSCompliant(false)] public static unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialfvSGIX")] + [CLSCompliant(false)] public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialfvSGIX")] + [CLSCompliant(false)] public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialfvSGIX")] + [CLSCompliant(false)] public static unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialivSGIX")] + [CLSCompliant(false)] public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialivSGIX")] + [CLSCompliant(false)] public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialivSGIX")] + [CLSCompliant(false)] public static unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_instruments] @@ -131158,58 +134667,62 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_list_priority] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] + [CLSCompliant(false)] public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] + [CLSCompliant(false)] public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] + [CLSCompliant(false)] public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] + [CLSCompliant(false)] public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] + [CLSCompliant(false)] public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] + [CLSCompliant(false)] public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] + [CLSCompliant(false)] public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] + [CLSCompliant(false)] public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] + [CLSCompliant(false)] public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] + [CLSCompliant(false)] public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] + [CLSCompliant(false)] public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] + [CLSCompliant(false)] public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_igloo_interface] @@ -131220,6 +134733,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_igloo_interface] [Obsolete("Use SgixIglooInterface overload instead")] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] + [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } @@ -131227,6 +134741,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_igloo_interface] [Obsolete("Use SgixIglooInterface overload instead")] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] + [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -131234,6 +134749,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_igloo_interface] [Obsolete("Use SgixIglooInterface overload instead")] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] + [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -131251,18 +134767,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_igloo_interface] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] + [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: SGIX_igloo_interface] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] + [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: SGIX_igloo_interface] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] + [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -131275,24 +134794,27 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_instruments] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glInstrumentsBufferSGIX")] + [CLSCompliant(false)] public static void InstrumentsBuffer(Int32 size, [OutAttribute] Int32[] buffer) { throw new NotImplementedException(); } /// [requires: SGIX_instruments] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glInstrumentsBufferSGIX")] + [CLSCompliant(false)] public static void InstrumentsBuffer(Int32 size, [OutAttribute] out Int32 buffer) { throw new NotImplementedException(); } /// [requires: SGIX_instruments] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glInstrumentsBufferSGIX")] + [CLSCompliant(false)] public static unsafe void InstrumentsBuffer(Int32 size, [OutAttribute] Int32* buffer) { throw new NotImplementedException(); } /// [requires: SGIX_async] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glIsAsyncMarkerSGIX")] + [CLSCompliant(false)] public static bool IsAsyncMarker(Int32 marker) { throw new NotImplementedException(); } /// [requires: SGIX_async] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glIsAsyncMarkerSGIX")] + [CLSCompliant(false)] public static bool IsAsyncMarker(UInt32 marker) { throw new NotImplementedException(); } /// [requires: SGIX_fragment_lighting] @@ -131306,58 +134828,62 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_list_priority] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfSGIX")] + [CLSCompliant(false)] public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfSGIX")] + [CLSCompliant(false)] public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] + [CLSCompliant(false)] public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] + [CLSCompliant(false)] public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] + [CLSCompliant(false)] public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] + [CLSCompliant(false)] public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameteriSGIX")] + [CLSCompliant(false)] public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameteriSGIX")] + [CLSCompliant(false)] public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] + [CLSCompliant(false)] public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] + [CLSCompliant(false)] public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] + [CLSCompliant(false)] public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_list_priority] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] + [CLSCompliant(false)] public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_polynomial_ffd] @@ -131371,7 +134897,6 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_polynomial_ffd] [Obsolete("Use FfdMaskSgix overload instead")] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glLoadIdentityDeformationMapSGIX")] public static void LoadIdentityDeformationMap(UInt32 mask) { throw new NotImplementedException(); } @@ -131381,30 +134906,32 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_async] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] + [CLSCompliant(false)] public static Int32 PollAsync([OutAttribute] out Int32 markerp) { throw new NotImplementedException(); } /// [requires: SGIX_async] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] + [CLSCompliant(false)] public static unsafe Int32 PollAsync([OutAttribute] Int32* markerp) { throw new NotImplementedException(); } /// [requires: SGIX_async] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] + [CLSCompliant(false)] public static Int32 PollAsync([OutAttribute] out UInt32 markerp) { throw new NotImplementedException(); } /// [requires: SGIX_async] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] + [CLSCompliant(false)] public static unsafe Int32 PollAsync([OutAttribute] UInt32* markerp) { throw new NotImplementedException(); } /// [requires: SGIX_instruments] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glPollInstrumentsSGIX")] + [CLSCompliant(false)] public static Int32 PollInstruments([OutAttribute] out Int32 marker_p) { throw new NotImplementedException(); } /// [requires: SGIX_instruments] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glPollInstrumentsSGIX")] + [CLSCompliant(false)] public static unsafe Int32 PollInstruments([OutAttribute] Int32* marker_p) { throw new NotImplementedException(); } /// [requires: SGIX_instruments] @@ -131413,15 +134940,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_reference_plane] [AutoGenerated(Category = "SGIX_reference_plane", Version = "", EntryPoint = "glReferencePlaneSGIX")] + [CLSCompliant(false)] public static void ReferencePlane(Double[] equation) { throw new NotImplementedException(); } /// [requires: SGIX_reference_plane] [AutoGenerated(Category = "SGIX_reference_plane", Version = "", EntryPoint = "glReferencePlaneSGIX")] + [CLSCompliant(false)] public static void ReferencePlane(ref Double equation) { throw new NotImplementedException(); } /// [requires: SGIX_reference_plane] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_reference_plane", Version = "", EntryPoint = "glReferencePlaneSGIX")] + [CLSCompliant(false)] public static unsafe void ReferencePlane(Double* equation) { throw new NotImplementedException(); } /// [requires: SGIX_sprite] @@ -131430,11 +134959,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_sprite] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterfvSGIX")] + [CLSCompliant(false)] public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_sprite] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterfvSGIX")] + [CLSCompliant(false)] public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Single* @params) { throw new NotImplementedException(); } /// [requires: SGIX_sprite] @@ -131443,11 +134973,12 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SGIX_sprite] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterivSGIX")] + [CLSCompliant(false)] public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: SGIX_sprite] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterivSGIX")] + [CLSCompliant(false)] public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: SGIX_instruments] @@ -131472,15 +135003,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static void Color3fVertex3(Single[] c, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static void Color3fVertex3(ref Single c, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void Color3fVertex3(Single* c, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -131489,15 +135022,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void Color4fNormal3fVertex3(Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void Color4fNormal3fVertex3(ref Single c, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void Color4fNormal3fVertex3(Single* c, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -131506,15 +135041,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fvSUN")] + [CLSCompliant(false)] public static void Color4ubVertex2(Byte[] c, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fvSUN")] + [CLSCompliant(false)] public static void Color4ubVertex2(ref Byte c, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fvSUN")] + [CLSCompliant(false)] public static unsafe void Color4ubVertex2(Byte* c, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -131523,15 +135060,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static void Color4ubVertex3(Byte[] c, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static void Color4ubVertex3(ref Byte c, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void Color4ubVertex3(Byte* c, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_mesh_array] @@ -131544,8 +135083,8 @@ namespace OpenTK.Graphics.OpenGL public static void DrawMeshArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 width) { throw new NotImplementedException(); } /// [requires: SUN_global_alpha] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorbSUN")] + [CLSCompliant(false)] public static void GlobalAlphaFactor(SByte factor) { throw new NotImplementedException(); } /// [requires: SUN_global_alpha] @@ -131569,17 +135108,18 @@ namespace OpenTK.Graphics.OpenGL public static void GlobalAlphaFactor(Byte factor) { throw new NotImplementedException(); } /// [requires: SUN_global_alpha] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactoruiSUN")] + [CLSCompliant(false)] public static void GlobalAlphaFactor(UInt32 factor) { throw new NotImplementedException(); } /// [requires: SUN_global_alpha] [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorusSUN")] + [CLSCompliant(false)] public static void GlobalAlphaFactor(Int16 factor) { throw new NotImplementedException(); } /// [requires: SUN_global_alpha] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorusSUN")] + [CLSCompliant(false)] public static void GlobalAlphaFactor(UInt16 factor) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -131588,15 +135128,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void Normal3fVertex3(Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void Normal3fVertex3(ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void Normal3fVertex3(Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] @@ -131605,18 +135147,21 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_triangle_list] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodePointerSUN")] + [CLSCompliant(false)] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodePointerSUN")] + [CLSCompliant(false)] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodePointerSUN")] + [CLSCompliant(false)] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -131633,363 +135178,392 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_triangle_list] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeubvSUN")] + [CLSCompliant(false)] public static void ReplacementCode(Byte[] code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeubvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCode(Byte* code) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor3fVertex3(Int32 rc, Single r, Single g, Single b, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor3fVertex3(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single[] c, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor3fVertex3(ref Int32 rc, ref Single c, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single* c, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single[] c, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, ref Single c, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single* c, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fSUN")] + [CLSCompliant(false)] 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) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fSUN")] + [CLSCompliant(false)] 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) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4ubVertex3(Int32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4ubVertex3(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte[] c, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, ref Byte c, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte* c, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte[] c, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, ref Byte c, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte* c, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiNormal3fVertex3(Int32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiNormal3fVertex3(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuiSUN")] + [CLSCompliant(false)] public static void ReplacementCode(Int32 code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuiSUN")] + [CLSCompliant(false)] public static void ReplacementCode(UInt32 code) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN")] + [CLSCompliant(false)] 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) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN")] + [CLSCompliant(false)] 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) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fVertex3(Int32 rc, Single s, Single t, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fVertex3(UInt32 rc, Single s, Single t, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single[] tc, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, ref Single tc, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single* tc, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single[] tc, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, ref Single tc, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single* tc, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiVertex3(Int32 rc, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiVertex3(UInt32 rc, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiVertex3(ref Int32 rc, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiVertex3(ref Int32 rc, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiVertex3(Int32* rc, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiVertex3(ref UInt32 rc, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] + [CLSCompliant(false)] public static void ReplacementCodeuiVertex3(ref UInt32 rc, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCodeuiVertex3(UInt32* rc, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] + [CLSCompliant(false)] public static void ReplacementCode(Int32[] code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCode(Int32* code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] + [CLSCompliant(false)] public static void ReplacementCode(UInt32[] code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCode(UInt32* code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusSUN")] + [CLSCompliant(false)] public static void ReplacementCode(Int16 code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusSUN")] + [CLSCompliant(false)] public static void ReplacementCode(UInt16 code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] + [CLSCompliant(false)] public static void ReplacementCode(Int16[] code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCode(Int16* code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] + [CLSCompliant(false)] public static void ReplacementCode(UInt16[] code) { throw new NotImplementedException(); } /// [requires: SUN_triangle_list] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] + [CLSCompliant(false)] public static unsafe void ReplacementCode(UInt16* code) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -131998,15 +135572,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fColor3fVertex3(Single[] tc, Single[] c, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fColor3fVertex3(ref Single tc, ref Single c, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void TexCoord2fColor3fVertex3(Single* tc, Single* c, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -132015,15 +135591,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fColor4fNormal3fVertex3(Single[] tc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -132032,15 +135610,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fColor4ubVertex3(Single[] tc, Byte[] c, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fColor4ubVertex3(ref Single tc, ref Byte c, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void TexCoord2fColor4ubVertex3(Single* tc, Byte* c, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -132049,15 +135629,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fNormal3fVertex3(Single[] tc, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fNormal3fVertex3(ref Single tc, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void TexCoord2fNormal3fVertex3(Single* tc, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -132066,15 +135648,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fVertex3(Single[] tc, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fvSUN")] + [CLSCompliant(false)] public static void TexCoord2fVertex3(ref Single tc, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fvSUN")] + [CLSCompliant(false)] public static unsafe void TexCoord2fVertex3(Single* tc, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -132083,15 +135667,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")] + [CLSCompliant(false)] public static void TexCoord4fColor4fNormal3fVertex4(Single[] tc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")] + [CLSCompliant(false)] public static void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, ref Single n, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")] + [CLSCompliant(false)] public static unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, Single* n, Single* v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] @@ -132100,15 +135686,17 @@ namespace OpenTK.Graphics.OpenGL /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fvSUN")] + [CLSCompliant(false)] public static void TexCoord4fVertex4(Single[] tc, Single[] v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fvSUN")] + [CLSCompliant(false)] public static void TexCoord4fVertex4(ref Single tc, ref Single v) { throw new NotImplementedException(); } /// [requires: SUN_vertex] - [System.CLSCompliant(false)] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fvSUN")] + [CLSCompliant(false)] public static unsafe void TexCoord4fVertex4(Single* tc, Single* v) { throw new NotImplementedException(); } } diff --git a/Source/OpenTK/Graphics/OpenGL/GLHelper.cs b/Source/OpenTK/Graphics/OpenGL/GLHelper.cs index 15991a5a..e188f40b 100644 --- a/Source/OpenTK/Graphics/OpenGL/GLHelper.cs +++ b/Source/OpenTK/Graphics/OpenGL/GLHelper.cs @@ -938,11 +938,13 @@ namespace OpenTK.Graphics.OpenGL #region Rect + [CLSCompliant(false)] public static void Rect(RectangleF rect) { GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom); } + [CLSCompliant(false)] public static void Rect(Rectangle rect) { GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom); diff --git a/Source/OpenTK/Graphics/OpenGL/GLObsolete.cs b/Source/OpenTK/Graphics/OpenGL/GLObsolete.cs index 45f3cea3..3ca8bb69 100644 --- a/Source/OpenTK/Graphics/OpenGL/GLObsolete.cs +++ b/Source/OpenTK/Graphics/OpenGL/GLObsolete.cs @@ -130,6 +130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glGetSeparableFilter")] [Obsolete("Use GetSeparableFilter overload instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[] span) where T5 : struct { throw new NotImplementedException(); } @@ -169,6 +170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glGetSeparableFilter")] [Obsolete("Use GetSeparableFilter overload instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[,] span) where T5 : struct { throw new NotImplementedException(); } @@ -209,6 +211,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glGetSeparableFilter")] [Obsolete("Use GetSeparableFilter overload instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[,,] span) where T5 : struct { throw new NotImplementedException(); } @@ -289,6 +292,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glGetSeparableFilter")] [Obsolete("Use GetSeparableFilter overload instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct @@ -330,6 +334,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glGetSeparableFilter")] [Obsolete("Use GetSeparableFilter overload instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[,] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct @@ -371,6 +376,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glGetSeparableFilter")] [Obsolete("Use GetSeparableFilter overload instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct @@ -412,6 +418,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glGetSeparableFilter")] [Obsolete("Use GetSeparableFilter overload instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] ref T4 column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct @@ -453,6 +460,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glGetSeparableFilter")] [Obsolete("Use GetSeparableFilter overload with equal array dimensions instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct @@ -495,6 +503,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glGetSeparableFilter")] [Obsolete("Use GetSeparableFilter overload with equal array dimensions instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct @@ -596,6 +605,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glSeparableFilter2D")] [Obsolete("Use overload with equal array dimensions instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[] column) where T7 : struct { throw new NotImplementedException(); } @@ -646,6 +656,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glSeparableFilter2D")] [Obsolete("Use overload with equal array dimensions instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[,] column) where T7 : struct { throw new NotImplementedException(); } @@ -696,6 +707,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glSeparableFilter2D")] [Obsolete("Use overload with equal array dimensions instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[,,] column) where T7 : struct { throw new NotImplementedException(); } @@ -796,6 +808,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glSeparableFilter2D")] [Obsolete("Use overload with equal array dimensions instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct @@ -847,6 +860,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glSeparableFilter2D")] [Obsolete("Use overload with equal array dimensions instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct @@ -898,6 +912,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "Version12Deprecated", Version = "1.2", EntryPoint = "glSeparableFilter2D")] [Obsolete("Use overload with equal array dimensions instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct @@ -1210,6 +1225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] T4[] row, [OutAttribute] T5[] column, [InAttribute, OutAttribute] T6[] span) where T4 : struct @@ -1252,6 +1268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] T4[,] row, [OutAttribute] T5[,] column, [InAttribute, OutAttribute] T6[,] span) where T4 : struct @@ -1294,6 +1311,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] T4[,,] row, [OutAttribute] T5[,,] column, [InAttribute, OutAttribute] T6[,,] span) where T4 : struct @@ -1336,6 +1354,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[] span) where T5 : struct { throw new NotImplementedException(); } @@ -1376,6 +1395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[,] span) where T5 : struct { throw new NotImplementedException(); } @@ -1416,6 +1436,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[,,] span) where T5 : struct { throw new NotImplementedException(); } @@ -1496,6 +1517,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct @@ -1537,6 +1559,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[,] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct @@ -1578,6 +1601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct @@ -1660,6 +1684,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use ref/array overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct @@ -1702,6 +1727,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use ref/array overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct @@ -1744,6 +1770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use ref/array overloads instead")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T3 row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct @@ -1896,6 +1923,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")] [Obsolete("Use ref/array overloads instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[] column) where T6 : struct @@ -1947,6 +1975,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")] [Obsolete("Use ref/array overloads instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] row, [InAttribute, OutAttribute] T7[,] column) where T6 : struct @@ -1998,6 +2027,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")] [Obsolete("Use ref/array overloads instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct @@ -2049,6 +2079,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")] [Obsolete("Use SeparableFilter2D overloads instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[] column) where T7 : struct { throw new NotImplementedException(); } @@ -2099,6 +2130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")] [Obsolete("Use SeparableFilter2D overloads instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[,] column) where T7 : struct { throw new NotImplementedException(); } @@ -2149,6 +2181,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")] [Obsolete("Use SeparableFilter2D overloads instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[,,] column) where T7 : struct { throw new NotImplementedException(); } @@ -2249,6 +2282,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")] [Obsolete("Use ref/array overloads instead")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct @@ -2386,6 +2420,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] + [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } @@ -2393,6 +2428,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] + [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } @@ -2400,6 +2436,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] + [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } @@ -2420,6 +2457,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] + [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } @@ -2427,6 +2465,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] + [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } @@ -2434,6 +2473,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] + [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } @@ -2441,6 +2481,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] + [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct { throw new NotImplementedException(); } diff --git a/Source/OpenTK/Graphics/OpenGL4/GL4.cs b/Source/OpenTK/Graphics/OpenGL4/GL4.cs index 67cdb918..20aae558 100644 --- a/Source/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/Source/OpenTK/Graphics/OpenGL4/GL4.cs @@ -734,6 +734,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] + [CLSCompliant(false)] public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -749,8 +750,8 @@ namespace OpenTK.Graphics.OpenGL4 /// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] + [CLSCompliant(false)] public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -772,6 +773,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] + [CLSCompliant(false)] public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -792,8 +794,8 @@ namespace OpenTK.Graphics.OpenGL4 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] + [CLSCompliant(false)] public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -815,6 +817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] + [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -835,8 +838,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA. GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_ALPHA, and GL_ONE_MINUS_CONSTANT_ALPHA. The initial value is GL_ZERO. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -868,6 +871,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] + [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.All srcRGB, OpenTK.Graphics.OpenGL4.All dstRGB, OpenTK.Graphics.OpenGL4.All srcAlpha, OpenTK.Graphics.OpenGL4.All dstAlpha) { throw new NotImplementedException(); } /// [requires: ARB_draw_buffers_blend] @@ -898,64 +902,68 @@ namespace OpenTK.Graphics.OpenGL4 /// Specified how the alpha destination blending factor is computed. The initial value is GL_ZERO. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.All srcRGB, OpenTK.Graphics.OpenGL4.All dstRGB, OpenTK.Graphics.OpenGL4.All srcAlpha, OpenTK.Graphics.OpenGL4.All dstAlpha) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static void CompileShaderInclude(Int32 shader, Int32 count, String[] path, Int32[] length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static void CompileShaderInclude(Int32 shader, Int32 count, String[] path, ref Int32 length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, String[] path, Int32* length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static void CompileShaderInclude(UInt32 shader, Int32 count, String[] path, Int32[] length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static void CompileShaderInclude(UInt32 shader, Int32 count, String[] path, ref Int32 length) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] + [CLSCompliant(false)] public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, String[] path, Int32* length) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, Int32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, UInt32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, Int32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, UInt32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, Int32 flags) { throw new NotImplementedException(); } /// [requires: ARB_cl_event] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] + [CLSCompliant(false)] public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, UInt32 flags) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -988,6 +996,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -1006,6 +1015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -1024,6 +1034,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -1080,6 +1091,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1116,6 +1128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1151,8 +1164,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1188,8 +1201,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1225,8 +1238,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1262,8 +1275,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1300,6 +1313,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, Int32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1335,8 +1349,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] @@ -1345,11 +1359,12 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_compute_variable_group_size] [AutoGenerated(Category = "ARB_compute_variable_group_size", Version = "", EntryPoint = "glDispatchComputeGroupSizeARB")] + [CLSCompliant(false)] public static void DispatchComputeGroupSize(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z, Int32 group_size_x, Int32 group_size_y, Int32 group_size_z) { throw new NotImplementedException(); } /// [requires: ARB_compute_variable_group_size] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_compute_variable_group_size", Version = "", EntryPoint = "glDispatchComputeGroupSizeARB")] + [CLSCompliant(false)] public static void DispatchComputeGroupSize(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z, UInt32 group_size_x, UInt32 group_size_y, UInt32 group_size_z) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1396,6 +1411,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1442,6 +1458,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1487,8 +1504,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1534,8 +1551,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1581,8 +1598,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_debug_output] @@ -1628,8 +1645,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -1638,33 +1655,37 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] + [CLSCompliant(false)] public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] + [CLSCompliant(false)] public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] + [CLSCompliant(false)] public static void GetNamedString(Int32 namelen, String name, Int32 bufSize, [OutAttribute] out Int32 stringlen, [OutAttribute] StringBuilder @string) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] + [CLSCompliant(false)] public static unsafe void GetNamedString(Int32 namelen, String name, Int32 bufSize, [OutAttribute] Int32* stringlen, [OutAttribute] StringBuilder @string) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] + [CLSCompliant(false)] public static void GetNamedString(Int32 namelen, String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] + [CLSCompliant(false)] public static void GetNamedString(Int32 namelen, String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] + [CLSCompliant(false)] public static unsafe void GetNamedString(Int32 namelen, String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -1673,18 +1694,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] + [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[] table) where T4 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] + [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] table) where T4 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] + [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] table) where T4 : struct { throw new NotImplementedException(); } @@ -1701,18 +1725,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] + [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] + [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] img) where T3 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] + [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] img) where T3 : struct { throw new NotImplementedException(); } @@ -1729,18 +1756,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] + [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[] image) where T4 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] + [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] image) where T4 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] + [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] image) where T4 : struct { throw new NotImplementedException(); } @@ -1757,18 +1787,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] + [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] + [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] + [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct { throw new NotImplementedException(); } @@ -1781,41 +1814,47 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double[] v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Double v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] + [CLSCompliant(false)] public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double* v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Single v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] + [CLSCompliant(false)] public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single* v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] + [CLSCompliant(false)] public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] + [CLSCompliant(false)] public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32* v) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -1824,18 +1863,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] + [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] + [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] + [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct { throw new NotImplementedException(); } @@ -1848,88 +1890,97 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Single values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] + [CLSCompliant(false)] public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] + [CLSCompliant(false)] public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] + [CLSCompliant(false)] public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] + [CLSCompliant(false)] public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] + [CLSCompliant(false)] public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -1938,6 +1989,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] + [CLSCompliant(false)] public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[] column, [InAttribute, OutAttribute] T7[] span) where T4 : struct where T6 : struct @@ -1946,6 +1998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] + [CLSCompliant(false)] public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,] column, [InAttribute, OutAttribute] T7[,] span) where T4 : struct where T6 : struct @@ -1954,6 +2007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] + [CLSCompliant(false)] public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,,] column, [InAttribute, OutAttribute] T7[,,] span) where T4 : struct where T6 : struct @@ -1974,18 +2028,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] + [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[] img) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] + [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] img) where T5 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] + [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] img) where T5 : struct { throw new NotImplementedException(); } @@ -1998,156 +2055,167 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] + [CLSCompliant(false)] public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: ARB_robustness] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] + [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] + [CLSCompliant(false)] public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] + [CLSCompliant(false)] public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] + [CLSCompliant(false)] public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] + [CLSCompliant(false)] public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] + [CLSCompliant(false)] public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] + [CLSCompliant(false)] public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_shading_language_include] @@ -2156,47 +2224,52 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] + [CLSCompliant(false)] public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] + [CLSCompliant(false)] public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] + [CLSCompliant(false)] public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] + [CLSCompliant(false)] public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] + [CLSCompliant(false)] public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] + [CLSCompliant(false)] public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] + [CLSCompliant(false)] public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] + [CLSCompliant(false)] public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] + [CLSCompliant(false)] public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] + [CLSCompliant(false)] public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } /// [requires: ARB_sample_shading] @@ -2224,39 +2297,42 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, Int64[] values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, ref Int64 values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, Int64* values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, UInt64[] values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, ref UInt64 values) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] + [CLSCompliant(false)] public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, UInt64* values) { throw new NotImplementedException(); } /// [requires: ARB_robustness] @@ -2265,18 +2341,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] + [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -2293,67 +2372,72 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, Int64[] value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, ref Int64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static unsafe void UniformHandle(Int32 location, Int32 count, Int64* value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, UInt64[] value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static void UniformHandle(Int32 location, Int32 count, ref UInt64 value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] + [CLSCompliant(false)] public static unsafe void UniformHandle(Int32 location, Int32 count, UInt64* value) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] + [CLSCompliant(false)] public static void VertexAttribL1(Int32 index, Int64 x) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] + [CLSCompliant(false)] public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] + [CLSCompliant(false)] public static void VertexAttribL1(Int32 index, Int64[] v) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] + [CLSCompliant(false)] public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new NotImplementedException(); } /// [requires: ARB_bindless_texture] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new NotImplementedException(); } } @@ -2372,6 +2456,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glActiveShaderProgram")] + [CLSCompliant(false)] public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -2387,8 +2472,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the program object to set as the active program pipeline object pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glActiveShaderProgram")] + [CLSCompliant(false)] public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } /// [requires: v1.3] @@ -2416,6 +2501,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] + [CLSCompliant(false)] public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -2431,8 +2517,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the shader object that is to be attached. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] + [CLSCompliant(false)] public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -2449,6 +2535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginConditionalRender")] + [CLSCompliant(false)] public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.ConditionalRenderType mode) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -2464,8 +2551,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginConditionalRender")] + [CLSCompliant(false)] public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.ConditionalRenderType mode) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -2482,6 +2569,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 id) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -2497,8 +2585,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -2520,6 +2608,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glBeginQueryIndexed")] + [CLSCompliant(false)] public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, Int32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -2540,8 +2629,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glBeginQueryIndexed")] + [CLSCompliant(false)] public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -2574,6 +2663,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] + [CLSCompliant(false)] public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -2594,8 +2684,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a null terminated string containing the name of the vertex shader attribute variable to which index is to be bound. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] + [CLSCompliant(false)] public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -2612,6 +2702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -2627,8 +2718,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBindBuffer")] + [CLSCompliant(false)] public static void BindBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -2650,6 +2741,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -2670,8 +2762,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The name of a buffer object to bind to the specified binding point. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -2703,6 +2795,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -2733,8 +2826,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2761,6 +2854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2787,6 +2881,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, ref Int32 buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2812,8 +2907,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, Int32* buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2839,8 +2934,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2866,8 +2961,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, ref UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2893,8 +2988,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] + [CLSCompliant(false)] public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2921,6 +3016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, IntPtr[] sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2947,6 +3043,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref IntPtr sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2972,8 +3069,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, IntPtr* sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -2999,8 +3096,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, IntPtr[] sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3026,8 +3123,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref IntPtr sizes) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3053,8 +3150,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array of names of buffer objects to bind to the targets on the specified binding point, or NULL. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] + [CLSCompliant(false)] public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, IntPtr* sizes) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -3076,6 +3173,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] + [CLSCompliant(false)] public static void BindFragDataLocation(Int32 program, Int32 color, String name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -3096,8 +3194,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The name of the user-defined varying out variable whose binding to modify /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] + [CLSCompliant(false)] public static void BindFragDataLocation(UInt32 program, UInt32 color, String name) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_blend_func_extended|VERSION_3_3] @@ -3124,6 +3222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glBindFragDataLocationIndexed")] + [CLSCompliant(false)] public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_blend_func_extended|VERSION_3_3] @@ -3149,8 +3248,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The name of the user-defined varying out variable whose binding to modify /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glBindFragDataLocationIndexed")] + [CLSCompliant(false)] public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -3167,6 +3266,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -3182,8 +3282,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of the framebuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindFramebuffer")] + [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_image_load_store|VERSION_4_2] @@ -3225,6 +3325,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glBindImageTexture")] + [CLSCompliant(false)] public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.TextureAccess access, OpenTK.Graphics.OpenGL4.SizedInternalFormat format) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_image_load_store|VERSION_4_2] @@ -3265,8 +3366,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the format that the elements of the image will be treated as for the purposes of formatted stores. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glBindImageTexture")] + [CLSCompliant(false)] public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.TextureAccess access, OpenTK.Graphics.OpenGL4.SizedInternalFormat format) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3288,6 +3389,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static void BindImageTextures(Int32 first, Int32 count, Int32[] textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3309,6 +3411,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static void BindImageTextures(Int32 first, Int32 count, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3329,8 +3432,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static unsafe void BindImageTextures(Int32 first, Int32 count, Int32* textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3351,8 +3454,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static void BindImageTextures(UInt32 first, Int32 count, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3373,8 +3476,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static void BindImageTextures(UInt32 first, Int32 count, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3395,8 +3498,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] + [CLSCompliant(false)] public static unsafe void BindImageTextures(UInt32 first, Int32 count, UInt32* textures) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -3408,6 +3511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glBindProgramPipeline")] + [CLSCompliant(false)] public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -3418,8 +3522,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of the pipeline object to bind to the context. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glBindProgramPipeline")] + [CLSCompliant(false)] public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -3436,6 +3540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -3451,8 +3556,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of the renderbuffer object to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindRenderbuffer")] + [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -3469,6 +3574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glBindSampler")] + [CLSCompliant(false)] public static void BindSampler(Int32 unit, Int32 sampler) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -3484,8 +3590,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of a sampler. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glBindSampler")] + [CLSCompliant(false)] public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3507,6 +3613,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static void BindSamplers(Int32 first, Int32 count, Int32[] samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3528,6 +3635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static void BindSamplers(Int32 first, Int32 count, ref Int32 samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3548,8 +3656,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing sampler objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static unsafe void BindSamplers(Int32 first, Int32 count, Int32* samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3570,8 +3678,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing sampler objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static void BindSamplers(UInt32 first, Int32 count, UInt32[] samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3592,8 +3700,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing sampler objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static void BindSamplers(UInt32 first, Int32 count, ref UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3614,8 +3722,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing sampler objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] + [CLSCompliant(false)] public static unsafe void BindSamplers(UInt32 first, Int32 count, UInt32* samplers) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -3632,6 +3740,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -3647,8 +3756,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glBindTexture")] + [CLSCompliant(false)] public static void BindTexture(OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3670,6 +3779,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static void BindTextures(Int32 first, Int32 count, Int32[] textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3691,6 +3801,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static void BindTextures(Int32 first, Int32 count, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3711,8 +3822,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static unsafe void BindTextures(Int32 first, Int32 count, Int32* textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3733,8 +3844,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static void BindTextures(UInt32 first, Int32 count, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3755,8 +3866,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static void BindTextures(UInt32 first, Int32 count, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3777,8 +3888,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of names of existing texture objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] + [CLSCompliant(false)] public static unsafe void BindTextures(UInt32 first, Int32 count, UInt32* textures) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -3795,6 +3906,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget target, Int32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -3810,8 +3922,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget target, UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -3823,6 +3935,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] + [CLSCompliant(false)] public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -3833,8 +3946,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of the vertex array to bind. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] + [CLSCompliant(false)] public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -3861,6 +3974,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glBindVertexBuffer")] + [CLSCompliant(false)] public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -3886,8 +4000,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The distance between elements within the buffer. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glBindVertexBuffer")] + [CLSCompliant(false)] public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3919,6 +4033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static void BindVertexBuffers(Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3950,6 +4065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static void BindVertexBuffers(Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -3980,8 +4096,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of strides to associate with the binding points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static unsafe void BindVertexBuffers(Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -4012,8 +4128,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of strides to associate with the binding points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static void BindVertexBuffers(UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -4044,8 +4160,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of strides to associate with the binding points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static void BindVertexBuffers(UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_multi_bind|VERSION_4_4] @@ -4076,8 +4192,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of strides to associate with the binding points. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] + [CLSCompliant(false)] public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } /// [requires: v1.4 and ARB_imaging|VERSION_1_4] @@ -4121,6 +4237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] + [CLSCompliant(false)] public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -4136,8 +4253,8 @@ namespace OpenTK.Graphics.OpenGL4 /// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] + [CLSCompliant(false)] public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -4180,6 +4297,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationSeparatei")] + [CLSCompliant(false)] public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -4200,8 +4318,8 @@ namespace OpenTK.Graphics.OpenGL4 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationSeparatei")] + [CLSCompliant(false)] public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -4244,6 +4362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] + [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc src, OpenTK.Graphics.OpenGL4.BlendingFactorDest dst) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -4264,8 +4383,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA. GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_ALPHA, and GL_ONE_MINUS_CONSTANT_ALPHA. The initial value is GL_ZERO. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc src, OpenTK.Graphics.OpenGL4.BlendingFactorDest dst) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -4328,6 +4447,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] + [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstAlpha) { throw new NotImplementedException(); } /// [requires: v4.0] @@ -4358,8 +4478,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specified how the alpha destination blending factor is computed. The initial value is GL_ZERO. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstAlpha) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -4438,6 +4558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -4466,6 +4587,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -4494,6 +4616,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] + [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct { throw new NotImplementedException(); } @@ -4576,6 +4699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] + [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct { throw new NotImplementedException(); } @@ -4604,6 +4728,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] + [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct { throw new NotImplementedException(); } @@ -4632,6 +4757,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] + [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct { throw new NotImplementedException(); } @@ -4714,6 +4840,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -4742,6 +4869,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -4770,6 +4898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] + [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -4910,6 +5039,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] + [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new NotImplementedException(); } @@ -4948,6 +5078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] + [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new NotImplementedException(); } @@ -4986,6 +5117,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] + [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new NotImplementedException(); } @@ -5088,6 +5220,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -5119,6 +5252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -5149,8 +5283,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -5182,6 +5316,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -5213,6 +5348,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -5243,8 +5379,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_clear_buffer_object|VERSION_4_3] @@ -5327,6 +5463,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] + [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } @@ -5370,6 +5507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] + [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } @@ -5413,6 +5551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] + [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } @@ -5488,8 +5627,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -5520,8 +5659,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -5552,8 +5691,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The value to clear a stencil render buffer to. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -5629,6 +5768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_clear_texture|VERSION_4_4] @@ -5660,6 +5800,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new NotImplementedException(); } @@ -5693,6 +5834,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new NotImplementedException(); } @@ -5726,6 +5868,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new NotImplementedException(); } @@ -5759,6 +5902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new NotImplementedException(); } @@ -5791,8 +5935,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_clear_texture|VERSION_4_4] @@ -5823,8 +5967,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new NotImplementedException(); } @@ -5857,8 +6001,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new NotImplementedException(); } @@ -5891,8 +6035,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new NotImplementedException(); } @@ -5925,8 +6069,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new NotImplementedException(); } @@ -5990,6 +6134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_clear_texture|VERSION_4_4] @@ -6051,6 +6196,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -6114,6 +6260,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6177,6 +6324,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6240,6 +6388,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T10 data) where T10 : struct { throw new NotImplementedException(); } @@ -6302,8 +6451,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new NotImplementedException(); } /// [requires: v4.4 and ARB_clear_texture|VERSION_4_4] @@ -6364,8 +6513,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -6428,8 +6577,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6492,8 +6641,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -6556,8 +6705,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address in memory of the data to be used to clear the specified region. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T10 data) where T10 : struct { throw new NotImplementedException(); } @@ -6581,6 +6730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -6601,8 +6751,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -6635,6 +6785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glColorMaski")] + [CLSCompliant(false)] public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -6650,46 +6801,48 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all GL_TRUE, indicating that the color components are written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glColorMaski")] + [CLSCompliant(false)] public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3ui")] + [CLSCompliant(false)] public static void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3ui")] + [CLSCompliant(false)] public static void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3uiv")] + [CLSCompliant(false)] public static unsafe void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3uiv")] + [CLSCompliant(false)] public static unsafe void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4ui")] + [CLSCompliant(false)] public static void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4ui")] + [CLSCompliant(false)] public static void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4uiv")] + [CLSCompliant(false)] public static unsafe void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4uiv")] + [CLSCompliant(false)] public static unsafe void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* color) { throw new NotImplementedException(); } /// @@ -6762,6 +6915,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] + [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T5[] data) where T5 : struct { throw new NotImplementedException(); } @@ -6800,6 +6954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] + [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T5[,] data) where T5 : struct { throw new NotImplementedException(); } @@ -6838,6 +6993,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] + [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T5[,,] data) where T5 : struct { throw new NotImplementedException(); } @@ -6950,6 +7106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T5[] table) where T5 : struct { throw new NotImplementedException(); } @@ -6988,6 +7145,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T5[,] table) where T5 : struct { throw new NotImplementedException(); } @@ -7026,6 +7184,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] + [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T5[,,] table) where T5 : struct { throw new NotImplementedException(); } @@ -7087,6 +7246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, Single[] @params) { throw new NotImplementedException(); } /// @@ -7108,6 +7268,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, ref Single @params) { throw new NotImplementedException(); } /// @@ -7128,8 +7289,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array where the values of the parameters are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] + [CLSCompliant(false)] public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, Single* @params) { throw new NotImplementedException(); } /// @@ -7151,6 +7312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, Int32[] @params) { throw new NotImplementedException(); } /// @@ -7172,6 +7334,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] + [CLSCompliant(false)] public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, ref Int32 @params) { throw new NotImplementedException(); } /// @@ -7192,8 +7355,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array where the values of the parameters are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] + [CLSCompliant(false)] public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -7205,6 +7368,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] + [CLSCompliant(false)] public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -7215,8 +7379,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the shader object to be compiled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] + [CLSCompliant(false)] public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v1.3] @@ -7299,6 +7463,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] + [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } @@ -7342,6 +7507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] + [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } @@ -7385,6 +7551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] + [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } @@ -7522,6 +7689,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct { throw new NotImplementedException(); } @@ -7570,6 +7738,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct { throw new NotImplementedException(); } @@ -7618,6 +7787,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] + [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct { throw new NotImplementedException(); } @@ -7770,6 +7940,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -7823,6 +7994,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -7876,6 +8048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] + [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -8013,6 +8186,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] + [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new NotImplementedException(); } @@ -8056,6 +8230,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] + [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new NotImplementedException(); } @@ -8099,6 +8274,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] + [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new NotImplementedException(); } @@ -8246,6 +8422,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct { throw new NotImplementedException(); } @@ -8299,6 +8476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct { throw new NotImplementedException(); } @@ -8352,6 +8530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] + [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct { throw new NotImplementedException(); } @@ -8519,6 +8698,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct { throw new NotImplementedException(); } @@ -8577,6 +8757,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct { throw new NotImplementedException(); } @@ -8635,6 +8816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] + [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct { throw new NotImplementedException(); } @@ -8767,6 +8949,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T5[] image) where T5 : struct { throw new NotImplementedException(); } @@ -8805,6 +8988,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T5[,] image) where T5 : struct { throw new NotImplementedException(); } @@ -8843,6 +9027,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] + [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T5[,,] image) where T5 : struct { throw new NotImplementedException(); } @@ -8965,6 +9150,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] image) where T6 : struct { throw new NotImplementedException(); } @@ -9008,6 +9194,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] image) where T6 : struct { throw new NotImplementedException(); } @@ -9051,6 +9238,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] + [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] image) where T6 : struct { throw new NotImplementedException(); } @@ -9144,6 +9332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] + [CLSCompliant(false)] public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Single[] @params) { throw new NotImplementedException(); } /// @@ -9167,8 +9356,8 @@ namespace OpenTK.Graphics.OpenGL4 /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Single* @params) { throw new NotImplementedException(); } /// @@ -9217,6 +9406,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] + [CLSCompliant(false)] public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Int32[] @params) { throw new NotImplementedException(); } /// @@ -9240,8 +9430,8 @@ namespace OpenTK.Graphics.OpenGL4 /// /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] + [CLSCompliant(false)] public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_copy_buffer|VERSION_3_1] @@ -9463,6 +9653,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_copy_image|VERSION_4_3", Version = "4.3", EntryPoint = "glCopyImageSubData")] + [CLSCompliant(false)] public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL4.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL4.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_copy_image|VERSION_4_3] @@ -9538,8 +9729,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The depth of the region to be copied. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_copy_image|VERSION_4_3", Version = "4.3", EntryPoint = "glCopyImageSubData")] + [CLSCompliant(false)] public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL4.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL4.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -9816,6 +10007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -9834,6 +10026,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -9852,6 +10045,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -9908,6 +10102,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -9944,6 +10139,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -9979,8 +10175,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -10016,8 +10212,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -10053,8 +10249,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -10090,8 +10286,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -10128,6 +10324,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, OpenTK.Graphics.OpenGL4.DebugType type, Int32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -10163,8 +10360,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, OpenTK.Graphics.OpenGL4.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10181,6 +10378,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(Int32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10196,8 +10394,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffer(UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10214,6 +10412,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10230,6 +10429,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref Int32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10245,8 +10445,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, Int32* buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10262,8 +10462,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10279,8 +10479,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static void DeleteBuffers(Int32 n, ref UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10296,8 +10496,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of buffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] + [CLSCompliant(false)] public static unsafe void DeleteBuffers(Int32 n, UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10314,6 +10514,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffer(Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10329,8 +10530,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffer(UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10347,6 +10548,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10363,6 +10565,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10378,8 +10581,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10395,8 +10598,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10412,8 +10615,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10429,8 +10632,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n framebuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] + [CLSCompliant(false)] public static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -10442,6 +10645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] + [CLSCompliant(false)] public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -10452,8 +10656,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the program object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] + [CLSCompliant(false)] public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -10470,6 +10674,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(Int32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -10485,8 +10690,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipeline(UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -10503,6 +10708,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -10519,6 +10725,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref Int32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -10534,8 +10741,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, Int32* pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -10551,8 +10758,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -10568,8 +10775,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static void DeleteProgramPipelines(Int32 n, ref UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -10585,8 +10792,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of program pipeline objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] + [CLSCompliant(false)] public static unsafe void DeleteProgramPipelines(Int32 n, UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10603,6 +10810,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQuery(Int32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10618,8 +10826,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQuery(UInt32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10636,6 +10844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10652,6 +10861,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10667,8 +10877,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10684,8 +10894,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10701,8 +10911,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static void DeleteQueries(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -10718,8 +10928,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of query objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] + [CLSCompliant(false)] public static unsafe void DeleteQueries(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10736,6 +10946,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10751,8 +10962,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffer(UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10769,6 +10980,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10785,6 +10997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10800,8 +11013,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10817,8 +11030,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10834,8 +11047,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -10851,8 +11064,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array containing n renderbuffer objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] + [CLSCompliant(false)] public static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -10869,6 +11082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSampler(Int32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -10884,8 +11098,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSampler(UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -10902,6 +11116,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, Int32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -10918,6 +11133,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, ref Int32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -10933,8 +11149,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static unsafe void DeleteSamplers(Int32 count, Int32* samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -10950,8 +11166,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, UInt32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -10967,8 +11183,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static void DeleteSamplers(Int32 count, ref UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -10984,8 +11200,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of sampler objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] + [CLSCompliant(false)] public static unsafe void DeleteSamplers(Int32 count, UInt32* samplers) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -10997,6 +11213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] + [CLSCompliant(false)] public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -11007,8 +11224,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the shader object to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] + [CLSCompliant(false)] public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -11036,6 +11253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(Int32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -11051,8 +11269,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTexture(UInt32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -11069,6 +11287,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, Int32[] textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -11085,6 +11304,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref Int32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -11100,8 +11320,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, Int32* textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -11117,8 +11337,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -11134,8 +11354,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static void DeleteTextures(Int32 n, ref UInt32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -11151,8 +11371,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of textures to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] + [CLSCompliant(false)] public static unsafe void DeleteTextures(Int32 n, UInt32* textures) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -11169,6 +11389,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedback(Int32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -11184,8 +11405,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedback(UInt32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -11202,6 +11423,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, Int32[] ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -11218,6 +11440,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -11233,8 +11456,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void DeleteTransformFeedbacks(Int32 n, Int32* ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -11250,8 +11473,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -11267,8 +11490,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static void DeleteTransformFeedbacks(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -11284,8 +11507,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of names of transform feedback objects to delete. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void DeleteTransformFeedbacks(Int32 n, UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -11302,6 +11525,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArray(Int32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -11317,8 +11541,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArray(UInt32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -11335,6 +11559,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, Int32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -11351,6 +11576,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref Int32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -11366,8 +11592,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, Int32* arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -11383,8 +11609,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -11400,8 +11626,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static void DeleteVertexArrays(Int32 n, ref UInt32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -11417,8 +11643,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the n names of the objects to be deleted. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] + [CLSCompliant(false)] public static unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -11478,6 +11704,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static void DepthRangeArray(Int32 first, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -11499,6 +11726,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static void DepthRangeArray(Int32 first, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -11519,8 +11747,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the near and far values for the depth range of each modified viewport. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static unsafe void DepthRangeArray(Int32 first, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -11541,8 +11769,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the near and far values for the depth range of each modified viewport. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static void DepthRangeArray(UInt32 first, Int32 count, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -11563,8 +11791,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the near and far values for the depth range of each modified viewport. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static void DepthRangeArray(UInt32 first, Int32 count, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -11585,8 +11813,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the near and far values for the depth range of each modified viewport. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] + [CLSCompliant(false)] public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -11624,6 +11852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeIndexed")] + [CLSCompliant(false)] public static void DepthRangeIndexed(Int32 index, Double n, Double f) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -11644,8 +11873,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeIndexed")] + [CLSCompliant(false)] public static void DepthRangeIndexed(UInt32 index, Double n, Double f) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -11662,6 +11891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] + [CLSCompliant(false)] public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -11677,8 +11907,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the shader object to be detached. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] + [CLSCompliant(false)] public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -11687,20 +11917,22 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glDisablei")] + [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glDisablei")] + [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] + [CLSCompliant(false)] public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_compute_shader|VERSION_4_3] @@ -11722,6 +11954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchCompute")] + [CLSCompliant(false)] public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_compute_shader|VERSION_4_3] @@ -11742,8 +11975,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The number of work groups to be launched in the Z dimension. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchCompute")] + [CLSCompliant(false)] public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_compute_shader|VERSION_4_3] @@ -11808,6 +12041,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] + [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct { throw new NotImplementedException(); } @@ -11826,6 +12060,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] + [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct { throw new NotImplementedException(); } @@ -11844,6 +12079,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] + [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct { throw new NotImplementedException(); } @@ -11921,6 +12157,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawArraysInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -11951,8 +12188,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawArraysInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -11980,6 +12217,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -11996,6 +12234,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -12011,8 +12250,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] + [CLSCompliant(false)] public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -12065,6 +12304,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices) where T3 : struct { throw new NotImplementedException(); } @@ -12093,6 +12333,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -12121,6 +12362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] + [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices) where T3 : struct { throw new NotImplementedException(); } @@ -12213,6 +12455,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -12246,6 +12489,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -12279,6 +12523,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -12356,6 +12601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] + [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct { throw new NotImplementedException(); } @@ -12379,6 +12625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] + [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct { throw new NotImplementedException(); } @@ -12402,6 +12649,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] + [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct { throw new NotImplementedException(); } @@ -12489,6 +12737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -12522,6 +12771,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -12555,6 +12805,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] + [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount) where T3 : struct { throw new NotImplementedException(); } @@ -12626,6 +12877,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -12661,8 +12913,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -12699,6 +12951,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -12736,8 +12989,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -12776,6 +13029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -12813,8 +13067,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -12853,6 +13107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -12890,8 +13145,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -12930,6 +13185,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -12967,8 +13223,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -13043,6 +13299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -13081,6 +13338,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -13119,6 +13377,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -13200,6 +13459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -13240,8 +13500,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_base_instance|VERSION_4_2] @@ -13283,6 +13543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -13325,8 +13586,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -13370,6 +13631,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -13412,8 +13674,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -13457,6 +13719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -13499,8 +13762,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -13544,6 +13807,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -13586,8 +13850,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the base instance for use in fetching instanced vertex attributes. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] + [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new NotImplementedException(); } @@ -13626,6 +13890,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v1.2] @@ -13662,6 +13927,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -13700,6 +13966,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -13738,6 +14005,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -13776,6 +14044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -13813,8 +14082,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); } /// [requires: v1.2] @@ -13850,8 +14119,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices) where T5 : struct { throw new NotImplementedException(); } @@ -13889,8 +14158,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -13928,8 +14197,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices) where T5 : struct { throw new NotImplementedException(); } @@ -13967,8 +14236,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the indices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] + [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices) where T5 : struct { throw new NotImplementedException(); } @@ -14012,6 +14281,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -14053,6 +14323,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -14096,6 +14367,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -14139,6 +14411,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -14182,6 +14455,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -14224,8 +14498,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -14266,8 +14540,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -14310,8 +14584,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -14354,8 +14628,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T5[,,] indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -14398,8 +14672,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] + [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T5 indices, Int32 basevertex) where T5 : struct { throw new NotImplementedException(); } @@ -14418,6 +14692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] + [CLSCompliant(false)] public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -14433,8 +14708,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of a transform feedback object from which to retrieve a primitive count. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] + [CLSCompliant(false)] public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_transform_feedback_instanced|VERSION_4_2] @@ -14456,6 +14731,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackInstanced")] + [CLSCompliant(false)] public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_transform_feedback_instanced|VERSION_4_2] @@ -14476,8 +14752,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the geometry to render. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackInstanced")] + [CLSCompliant(false)] public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -14499,6 +14775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] + [CLSCompliant(false)] public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 stream) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -14519,8 +14796,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the index of the transform feedback stream from which to retrieve a primitive count. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] + [CLSCompliant(false)] public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, UInt32 stream) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_transform_feedback_instanced|VERSION_4_2] @@ -14547,6 +14824,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackStreamInstanced")] + [CLSCompliant(false)] public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 stream, Int32 instancecount) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_transform_feedback_instanced|VERSION_4_2] @@ -14572,8 +14850,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the geometry to render. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackStreamInstanced")] + [CLSCompliant(false)] public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, UInt32 stream, Int32 instancecount) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -14606,6 +14884,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEnablei")] + [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -14621,8 +14900,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the index of the switch to disable (for glEnablei and glDisablei only). /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEnablei")] + [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -14634,6 +14913,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -14644,8 +14924,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the index of the generic vertex attribute to be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] + [CLSCompliant(false)] public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -14658,11 +14938,12 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glEndQueryIndexed")] + [CLSCompliant(false)] public static void EndQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glEndQueryIndexed")] + [CLSCompliant(false)] public static void EndQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -14763,6 +15044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -14788,8 +15070,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")] + [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -14821,6 +15103,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glFramebufferTexture")] + [CLSCompliant(false)] public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -14851,35 +15134,38 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the mipmap level of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glFramebufferTexture")] + [CLSCompliant(false)] public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture1D")] + [CLSCompliant(false)] public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture1D")] + [CLSCompliant(false)] public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture2D")] + [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture3D")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture3D")] + [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -14911,6 +15197,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -14941,8 +15228,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the layer of texture to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] + [CLSCompliant(false)] public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -14970,6 +15257,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static Int32 GenBuffer() { throw new NotImplementedException(); } /// [requires: v1.5] @@ -14986,6 +15274,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15002,6 +15291,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15017,8 +15307,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15034,8 +15324,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15051,8 +15341,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static void GenBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15068,8 +15358,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated buffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] + [CLSCompliant(false)] public static unsafe void GenBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15097,6 +15387,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static Int32 GenFramebuffer() { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15113,6 +15404,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15129,6 +15421,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15144,8 +15437,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15161,8 +15454,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15178,8 +15471,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static void GenFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15195,8 +15488,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated framebuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] + [CLSCompliant(false)] public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -15213,6 +15506,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -15229,6 +15523,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -15245,6 +15540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -15260,8 +15556,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -15277,8 +15573,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -15294,8 +15590,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static void GenProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -15311,8 +15607,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] + [CLSCompliant(false)] public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15329,6 +15625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static Int32 GenQuery() { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15345,6 +15642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15361,6 +15659,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15376,8 +15675,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15393,8 +15692,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15410,8 +15709,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static void GenQueries(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -15427,8 +15726,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated query object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] + [CLSCompliant(false)] public static unsafe void GenQueries(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15445,6 +15744,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15461,6 +15761,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15477,6 +15778,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15492,8 +15794,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15509,8 +15811,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15526,8 +15828,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static void GenRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -15543,8 +15845,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated renderbuffer object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] + [CLSCompliant(false)] public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -15561,6 +15863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static Int32 GenSampler() { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -15577,6 +15880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] Int32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -15593,6 +15897,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] out Int32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -15608,8 +15913,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static unsafe void GenSamplers(Int32 count, [OutAttribute] Int32* samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -15625,8 +15930,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] UInt32[] samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -15642,8 +15947,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static void GenSamplers(Int32 count, [OutAttribute] out UInt32 samplers) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -15659,8 +15964,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated sampler object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] + [CLSCompliant(false)] public static unsafe void GenSamplers(Int32 count, [OutAttribute] UInt32* samplers) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -15677,6 +15982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static Int32 GenTexture() { throw new NotImplementedException(); } /// [requires: v1.1] @@ -15693,6 +15999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -15709,6 +16016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -15724,8 +16032,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -15741,8 +16049,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -15758,8 +16066,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static void GenTextures(Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -15775,8 +16083,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated texture names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] + [CLSCompliant(false)] public static unsafe void GenTextures(Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -15793,6 +16101,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -15809,6 +16118,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -15825,6 +16135,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -15840,8 +16151,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -15857,8 +16168,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -15874,8 +16185,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static void GenTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -15891,8 +16202,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of into which the reserved names will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] + [CLSCompliant(false)] public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -15909,6 +16220,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static Int32 GenVertexArray() { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -15925,6 +16237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -15941,6 +16254,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -15956,8 +16270,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -15973,8 +16287,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -15990,8 +16304,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static void GenVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -16007,8 +16321,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array in which the generated vertex array object names are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] + [CLSCompliant(false)] public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -16035,6 +16349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -16061,6 +16376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -16086,8 +16402,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static unsafe void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -16113,8 +16429,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -16140,8 +16456,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_shader_atomic_counters|VERSION_4_2] @@ -16167,8 +16483,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] + [CLSCompliant(false)] public static unsafe void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -16210,6 +16526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -16250,8 +16567,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -16292,8 +16609,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -16334,8 +16651,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns a null terminated string containing the name of the attribute variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16372,6 +16689,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] + [CLSCompliant(false)] public static void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16407,8 +16725,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array into which the name of the shader subroutine uniform will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16444,8 +16762,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array into which the name of the shader subroutine uniform will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] + [CLSCompliant(false)] public static void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16481,8 +16799,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array into which the name of the shader subroutine uniform will be written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16514,6 +16832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16545,6 +16864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16575,8 +16895,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16607,8 +16927,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16639,8 +16959,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16671,8 +16991,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16709,6 +17029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16744,8 +17065,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a buffer that will receive the name of the specified shader subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16781,8 +17102,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a buffer that will receive the name of the specified shader subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] + [CLSCompliant(false)] public static void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -16818,8 +17139,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a buffer that will receive the name of the specified shader subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] + [CLSCompliant(false)] public static unsafe void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -16861,6 +17182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -16901,8 +17223,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -16943,8 +17265,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -16985,8 +17307,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns a null terminated string containing the name of the uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17013,6 +17335,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17039,6 +17362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17064,8 +17388,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17091,8 +17415,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17118,8 +17442,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17145,8 +17469,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable to receive the result of the query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17178,6 +17502,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17208,8 +17533,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array of characters to receive the name of the uniform block at uniformBlockIndex. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17240,8 +17565,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array of characters to receive the name of the uniform block at uniformBlockIndex. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17272,8 +17597,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array of characters to receive the name of the uniform block at uniformBlockIndex. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17305,6 +17630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] + [CLSCompliant(false)] public static void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17335,8 +17661,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a buffer into which the GL will place the name of the active uniform at uniformIndex within program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17367,8 +17693,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a buffer into which the GL will place the name of the active uniform at uniformIndex within program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] + [CLSCompliant(false)] public static void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder uniformName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17399,8 +17725,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a buffer into which the GL will place the name of the active uniform at uniformIndex within program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] + [CLSCompliant(false)] public static unsafe void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17432,6 +17758,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17463,6 +17790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, ref Int32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17493,8 +17821,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17525,8 +17853,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, UInt32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17557,8 +17885,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -17589,8 +17917,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, UInt32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -17617,6 +17945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] Int32[] shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -17643,6 +17972,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out Int32 shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -17668,8 +17998,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32* shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -17695,8 +18025,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] UInt32[] shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -17722,8 +18052,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] out Int32 count, [OutAttribute] out UInt32 shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -17749,8 +18079,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array that is used to return the names of attached shader objects. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] + [CLSCompliant(false)] public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32* shaders) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -17767,6 +18097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -17782,53 +18113,58 @@ namespace OpenTK.Graphics.OpenGL4 /// Points to a null terminated string containing the name of the attribute variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] + [CLSCompliant(false)] public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static bool GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] out bool data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] + [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] bool* data) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -17850,6 +18186,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -17871,6 +18208,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v3.2] @@ -17891,8 +18229,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -17914,6 +18252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -17935,6 +18274,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -17955,8 +18295,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -17999,6 +18339,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct { throw new NotImplementedException(); } @@ -18022,6 +18363,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -18045,6 +18387,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] + [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct { throw new NotImplementedException(); } @@ -18122,6 +18465,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] + [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct { throw new NotImplementedException(); } @@ -18150,6 +18494,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] + [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct { throw new NotImplementedException(); } @@ -18178,6 +18523,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] + [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct { throw new NotImplementedException(); } @@ -18260,6 +18606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T3[] table) where T3 : struct { throw new NotImplementedException(); } @@ -18288,6 +18635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T3[,] table) where T3 : struct { throw new NotImplementedException(); } @@ -18316,6 +18664,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] + [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T3[,,] table) where T3 : struct { throw new NotImplementedException(); } @@ -18367,6 +18716,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// @@ -18388,6 +18738,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// @@ -18408,8 +18759,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array where the values of the parameter will be stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// @@ -18431,6 +18782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// @@ -18452,6 +18804,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] + [CLSCompliant(false)] public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// @@ -18472,8 +18825,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to an array where the values of the parameter will be stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] + [CLSCompliant(false)] public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.3] @@ -18516,6 +18869,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] + [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute] T2[] img) where T2 : struct { throw new NotImplementedException(); } @@ -18539,6 +18893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] + [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute] T2[,] img) where T2 : struct { throw new NotImplementedException(); } @@ -18562,6 +18917,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] + [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute] T2[,,] img) where T2 : struct { throw new NotImplementedException(); } @@ -18639,6 +18995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T3[] image) where T3 : struct { throw new NotImplementedException(); } @@ -18667,6 +19024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T3[,] image) where T3 : struct { throw new NotImplementedException(); } @@ -18695,6 +19053,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] + [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T3[,,] image) where T3 : struct { throw new NotImplementedException(); } @@ -18746,6 +19105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// @@ -18767,6 +19127,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// @@ -18787,8 +19148,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the parameters to be retrieved. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// @@ -18810,6 +19171,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// @@ -18831,6 +19193,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] + [CLSCompliant(false)] public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// @@ -18851,8 +19214,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the parameters to be retrieved. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] + [CLSCompliant(false)] public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -18899,6 +19262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -18945,6 +19309,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -18990,8 +19355,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -19037,8 +19402,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -19084,8 +19449,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -19131,53 +19496,58 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] Double[] data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] out Double data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] Double* data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] Double[] data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] out Double data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] + [CLSCompliant(false)] public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] Double* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] + [CLSCompliant(false)] public static Double GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] Double[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] + [CLSCompliant(false)] public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] out Double data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] + [CLSCompliant(false)] public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] Double* data) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -19188,47 +19558,52 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static Single GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] out Single data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] + [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] Single* data) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_blend_func_extended|VERSION_3_3] @@ -19245,6 +19620,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glGetFragDataIndex")] + [CLSCompliant(false)] public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_blend_func_extended|VERSION_3_3] @@ -19260,8 +19636,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The name of the user-defined varying out variable whose index to query /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glGetFragDataIndex")] + [CLSCompliant(false)] public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -19278,6 +19654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] + [CLSCompliant(false)] public static Int32 GetFragDataLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -19293,8 +19670,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The name of the user-defined varying out variable whose binding to query /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] + [CLSCompliant(false)] public static Int32 GetFragDataLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -19321,6 +19698,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -19347,6 +19725,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -19372,8 +19751,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable receive the value of pname for attachment. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] + [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_framebuffer_no_attachments|VERSION_4_3] @@ -19395,6 +19774,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_framebuffer_no_attachments|VERSION_4_3] @@ -19416,6 +19796,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] + [CLSCompliant(false)] public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_framebuffer_no_attachments|VERSION_4_3] @@ -19436,8 +19817,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a variable to receive the value of the parameter named pname. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// @@ -19500,6 +19881,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[] values) where T4 : struct { throw new NotImplementedException(); } @@ -19533,6 +19915,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,] values) where T4 : struct { throw new NotImplementedException(); } @@ -19566,6 +19949,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] + [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,,] values) where T4 : struct { throw new NotImplementedException(); } @@ -19622,6 +20006,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// @@ -19643,6 +20028,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// @@ -19663,8 +20049,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the returned values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// @@ -19686,6 +20072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// @@ -19707,6 +20094,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] + [CLSCompliant(false)] public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// @@ -19727,111 +20115,123 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the returned values. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] + [CLSCompliant(false)] public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.2] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.2] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] Int64[] data) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] out Int64 data) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] Int64* data) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static Int32 GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } /// [requires: v1.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] + [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_internalformat_query2|VERSION_4_3] [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_internalformat_query2|VERSION_4_3] [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_internalformat_query2|VERSION_4_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] + [CLSCompliant(false)] public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_internalformat_query|VERSION_4_2] @@ -19863,6 +20263,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_internalformat_query|VERSION_4_2] @@ -19894,6 +20295,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_internalformat_query|VERSION_4_2] @@ -19924,8 +20326,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which to write the retrieved information. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// @@ -19988,6 +20390,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[] values) where T4 : struct { throw new NotImplementedException(); } @@ -20021,6 +20424,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,] values) where T4 : struct { throw new NotImplementedException(); } @@ -20054,6 +20458,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] + [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,,] values) where T4 : struct { throw new NotImplementedException(); } @@ -20110,6 +20515,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// @@ -20131,6 +20537,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// @@ -20151,8 +20558,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the retrieved parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] + [CLSCompliant(false)] public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// @@ -20174,6 +20581,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// @@ -20195,6 +20603,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] + [CLSCompliant(false)] public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// @@ -20215,8 +20624,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the retrieved parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] + [CLSCompliant(false)] public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -20238,6 +20647,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute] Single[] val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -20259,6 +20669,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute] out Single val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -20279,8 +20690,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute] Single* val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -20301,8 +20712,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute] Single[] val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -20323,8 +20734,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute] out Single val) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -20345,8 +20756,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array to receive the position of the sample. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] + [CLSCompliant(false)] public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute] Single* val) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20378,6 +20789,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20409,6 +20821,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20439,8 +20852,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20471,8 +20884,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20503,8 +20916,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20535,8 +20948,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20563,6 +20976,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20589,6 +21003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20614,8 +21029,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -20642,6 +21057,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20670,6 +21086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20697,8 +21114,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20727,6 +21144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20755,6 +21173,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20782,8 +21201,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20812,6 +21231,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20840,6 +21260,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20867,8 +21288,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20897,6 +21318,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20925,6 +21347,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20952,8 +21375,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -20988,6 +21411,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3|VERSION_4_3", Version = "4.3", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } @@ -21006,6 +21430,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3|VERSION_4_3", Version = "4.3", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -21024,6 +21449,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3|VERSION_4_3", Version = "4.3", EntryPoint = "glGetPointerv")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -21075,6 +21501,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -21106,6 +21533,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21139,6 +21567,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21172,6 +21601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21205,6 +21635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -21237,8 +21668,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -21269,8 +21700,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21303,8 +21734,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21337,8 +21768,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21371,8 +21802,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -21405,8 +21836,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -21437,8 +21868,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21471,8 +21902,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21505,8 +21936,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21539,8 +21970,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -21573,8 +22004,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute] IntPtr binary) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -21605,8 +22036,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21639,8 +22070,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21673,8 +22104,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] T4[,,] binary) where T4 : struct { throw new NotImplementedException(); } @@ -21707,8 +22138,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array into which the GL will return program's binary representation. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] + [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute] ref T4 binary) where T4 : struct { throw new NotImplementedException(); } @@ -21737,6 +22168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -21762,8 +22194,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -21789,8 +22221,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -21816,8 +22248,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -21844,6 +22276,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -21870,6 +22303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -21895,8 +22329,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a variable to retrieve the value of pname for the program interface. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -21922,8 +22356,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a variable to retrieve the value of pname for the program interface. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -21949,8 +22383,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a variable to retrieve the value of pname for the program interface. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -21976,8 +22410,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a variable to retrieve the value of pname for the program interface. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -21999,6 +22433,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -22020,6 +22455,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -22040,8 +22476,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -22062,8 +22498,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -22084,8 +22520,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -22106,8 +22542,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22134,6 +22570,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22159,8 +22596,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22186,8 +22623,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] + [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22213,8 +22650,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] + [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22236,6 +22673,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22257,6 +22695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22277,8 +22716,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22299,8 +22738,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22321,8 +22760,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -22343,8 +22782,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22366,6 +22805,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceIndex")] + [CLSCompliant(false)] public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22386,8 +22826,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The name of the resource to query the index of. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceIndex")] + [CLSCompliant(false)] public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22404,6 +22844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22420,6 +22861,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22435,8 +22877,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A token identifying the interface within program containing the resource named name. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22452,8 +22894,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A token identifying the interface within program containing the resource named name. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22469,8 +22911,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A token identifying the interface within program containing the resource named name. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22486,8 +22928,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A token identifying the interface within program containing the resource named name. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22509,6 +22951,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocation")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22529,8 +22972,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The name of the resource to query the location of. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocation")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22552,6 +22995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocationIndex")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22572,8 +23016,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The name of the resource to query the location of. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocationIndex")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, String name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22610,6 +23054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22646,6 +23091,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22681,8 +23127,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a character array into which will be written the name of the resource. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22718,8 +23164,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a character array into which will be written the name of the resource. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22755,8 +23201,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a character array into which will be written the name of the resource. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_program_interface_query|VERSION_4_3] @@ -22792,8 +23238,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a character array into which will be written the name of the resource. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -22820,6 +23266,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] + [CLSCompliant(false)] public static void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -22845,8 +23292,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] + [CLSCompliant(false)] public static unsafe void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -22872,8 +23319,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] + [CLSCompliant(false)] public static void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -22899,8 +23346,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable into which the queried value or values will be placed. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] + [CLSCompliant(false)] public static unsafe void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -22927,6 +23374,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -22953,6 +23401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -22978,8 +23427,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -23005,8 +23454,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -23032,8 +23481,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback3|VERSION_4_0] @@ -23059,8 +23508,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] + [CLSCompliant(false)] public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23082,6 +23531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23103,6 +23553,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23123,8 +23574,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -23146,6 +23597,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -23167,6 +23619,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -23187,8 +23640,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -23209,8 +23662,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -23231,8 +23684,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -23253,8 +23706,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23276,6 +23729,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23297,6 +23751,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23317,8 +23772,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23339,8 +23794,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23361,8 +23816,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23383,8 +23838,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -23405,8 +23860,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -23427,8 +23882,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -23449,8 +23904,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23471,8 +23926,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23493,8 +23948,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -23515,8 +23970,8 @@ namespace OpenTK.Graphics.OpenGL4 /// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -23538,6 +23993,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -23559,6 +24015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -23579,8 +24036,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array to receive the value of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] + [CLSCompliant(false)] public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23602,6 +24059,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23623,6 +24081,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23643,8 +24102,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23665,8 +24124,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23687,8 +24146,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23709,51 +24168,53 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23775,6 +24236,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23796,6 +24258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23816,8 +24279,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23838,8 +24301,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23860,8 +24323,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -23882,8 +24345,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the sampler parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// @@ -23956,6 +24419,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T3[] row, [InAttribute, OutAttribute] T4[] column, [InAttribute, OutAttribute] T5[] span) where T3 : struct where T4 : struct @@ -23996,6 +24460,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T3[,] row, [InAttribute, OutAttribute] T4[,] column, [InAttribute, OutAttribute] T5[,] span) where T3 : struct where T4 : struct @@ -24036,6 +24501,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] + [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T3[,,] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct where T4 : struct @@ -24106,6 +24572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24131,8 +24598,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24158,8 +24625,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24185,8 +24652,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of characters that is used to return the information log. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] + [CLSCompliant(false)] public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24208,6 +24675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24229,6 +24697,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24249,8 +24718,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24271,8 +24740,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24293,8 +24762,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24315,8 +24784,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested object parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -24343,6 +24812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute] Int32[] range, [OutAttribute] Int32[] precision) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -24369,6 +24839,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute] out Int32 range, [OutAttribute] out Int32 precision) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -24394,8 +24865,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an integer into which the numeric precision of the implementation is written. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute] Int32* range, [OutAttribute] Int32* precision) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24422,6 +24893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24447,8 +24919,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24474,8 +24946,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -24501,8 +24973,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of characters that is used to return the source code string. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] + [CLSCompliant(false)] public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -24535,6 +25007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.OpenGL4.StringNameIndexed name, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -24550,8 +25023,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glGetStringi, specifies the index of the string to return. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.OpenGL4.StringNameIndexed name, UInt32 index) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -24573,6 +25046,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineIndex")] + [CLSCompliant(false)] public static Int32 GetSubroutineIndex(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -24593,8 +25067,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of the subroutine uniform whose index to query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineIndex")] + [CLSCompliant(false)] public static Int32 GetSubroutineIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -24616,6 +25090,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineUniformLocation")] + [CLSCompliant(false)] public static Int32 GetSubroutineUniformLocation(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -24636,8 +25111,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of the subroutine uniform whose index to query. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineUniformLocation")] + [CLSCompliant(false)] public static Int32 GetSubroutineUniformLocation(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -24669,6 +25144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -24700,6 +25176,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -24730,8 +25207,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array to receive the values of the queried parameter. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -24794,6 +25271,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] + [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[] pixels) where T4 : struct { throw new NotImplementedException(); } @@ -24827,6 +25305,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] + [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,] pixels) where T4 : struct { throw new NotImplementedException(); } @@ -24860,6 +25339,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] + [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,,] pixels) where T4 : struct { throw new NotImplementedException(); } @@ -24921,6 +25401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] + [CLSCompliant(false)] public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -24947,6 +25428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] + [CLSCompliant(false)] public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -24972,8 +25454,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -25000,6 +25482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] + [CLSCompliant(false)] public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -25026,6 +25509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] + [CLSCompliant(false)] public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -25051,8 +25535,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -25074,6 +25558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -25095,6 +25580,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -25115,36 +25601,38 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] + [CLSCompliant(false)] public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] + [CLSCompliant(false)] public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] + [CLSCompliant(false)] public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -25166,6 +25654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -25187,6 +25676,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -25207,8 +25697,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the texture parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] + [CLSCompliant(false)] public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -25250,6 +25740,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -25290,8 +25781,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -25332,8 +25823,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -25374,8 +25865,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a buffer into which will be written the name of the varying. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] + [CLSCompliant(false)] public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -25392,6 +25883,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformBlockIndex")] + [CLSCompliant(false)] public static Int32 GetUniformBlockIndex(Int32 program, String uniformBlockName) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -25407,8 +25899,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address an array of characters to containing the name of the uniform block whose index to retrieve. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformBlockIndex")] + [CLSCompliant(false)] public static Int32 GetUniformBlockIndex(UInt32 program, String uniformBlockName) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -25430,6 +25922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -25451,6 +25944,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -25471,8 +25965,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -25493,8 +25987,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -25515,8 +26009,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -25537,8 +26031,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25560,6 +26054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25581,6 +26076,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25601,8 +26097,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25623,8 +26119,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25645,8 +26141,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25667,8 +26163,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -25695,6 +26191,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(Int32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] Int32[] uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -25721,6 +26218,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(Int32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] out Int32 uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -25746,8 +26244,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] Int32* uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -25773,8 +26271,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] UInt32[] uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -25800,8 +26298,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] out UInt32 uniformIndices) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -25827,8 +26325,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array that will receive the indices of the uniforms. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] + [CLSCompliant(false)] public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] UInt32* uniformIndices) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25850,6 +26348,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25871,6 +26370,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(Int32 program, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25891,8 +26391,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25913,8 +26413,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25935,8 +26435,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25957,8 +26457,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25975,6 +26475,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -25990,8 +26491,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Points to a null terminated string containing the name of the uniform variable whose location is to be queried. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] + [CLSCompliant(false)] public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -26013,6 +26514,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] + [CLSCompliant(false)] public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -26033,8 +26535,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable to receive the value or values of the subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] + [CLSCompliant(false)] public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -26055,8 +26557,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable to receive the value or values of the subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] + [CLSCompliant(false)] public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -26077,8 +26579,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a variable to receive the value or values of the subroutine uniform. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] + [CLSCompliant(false)] public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -26099,8 +26601,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -26121,8 +26623,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] + [CLSCompliant(false)] public static void GetUniform(UInt32 program, Int32 location, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -26143,8 +26645,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the value of the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] + [CLSCompliant(false)] public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26166,6 +26668,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26187,6 +26690,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26207,8 +26711,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26229,8 +26733,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26251,8 +26755,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26273,8 +26777,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26296,6 +26800,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26317,6 +26822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26337,8 +26843,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26359,8 +26865,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26381,8 +26887,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26403,37 +26909,38 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26455,6 +26962,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26476,6 +26984,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26496,8 +27005,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26518,8 +27027,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26540,8 +27049,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26562,36 +27071,38 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the requested data. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] out Double @params) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] + [CLSCompliant(false)] public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute] Double* @params) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26613,6 +27124,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26634,6 +27146,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -26657,6 +27170,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -26680,6 +27194,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -26703,6 +27218,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -26725,8 +27241,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [OutAttribute] IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -26747,8 +27263,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -26771,8 +27287,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -26795,8 +27311,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] T2[,,] pointer) where T2 : struct { throw new NotImplementedException(); } @@ -26819,8 +27335,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pointer value. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] + [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute] ref T2 pointer) where T2 : struct { throw new NotImplementedException(); } @@ -26876,6 +27392,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] + [CLSCompliant(false)] public static void InvalidateBufferData(Int32 buffer) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -26886,8 +27403,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The name of a buffer object whose data store to invalidate. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] + [CLSCompliant(false)] public static void InvalidateBufferData(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -26909,6 +27426,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] + [CLSCompliant(false)] public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -26929,8 +27447,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The length of the range within the buffer's data store to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] + [CLSCompliant(false)] public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -26952,6 +27470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -26973,6 +27492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -26993,8 +27513,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array identifying the attachments to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -27036,6 +27556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -27077,6 +27598,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -27117,8 +27639,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The height of the region to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -27135,6 +27657,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexImage")] + [CLSCompliant(false)] public static void InvalidateTexImage(Int32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -27150,8 +27673,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The level of detail of the texture object to invalidate. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexImage")] + [CLSCompliant(false)] public static void InvalidateTexImage(UInt32 texture, Int32 level) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -27198,6 +27721,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexSubImage")] + [CLSCompliant(false)] public static void InvalidateTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_invalidate_subdata|VERSION_4_3] @@ -27243,8 +27767,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The depth of the region to be invalidated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexSubImage")] + [CLSCompliant(false)] public static void InvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -27256,6 +27780,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -27266,8 +27791,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a buffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] + [CLSCompliant(false)] public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -27300,6 +27825,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glIsEnabledi")] + [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -27315,8 +27841,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the index of the capability. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glIsEnabledi")] + [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -27328,6 +27854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] + [CLSCompliant(false)] public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -27338,8 +27865,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a framebuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] + [CLSCompliant(false)] public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -27351,6 +27878,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] + [CLSCompliant(false)] public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -27361,8 +27889,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a potential program object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] + [CLSCompliant(false)] public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -27374,6 +27902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glIsProgramPipeline")] + [CLSCompliant(false)] public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -27384,8 +27913,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a program pipeline object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glIsProgramPipeline")] + [CLSCompliant(false)] public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -27397,6 +27926,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] + [CLSCompliant(false)] public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -27407,8 +27937,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a query object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] + [CLSCompliant(false)] public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -27420,6 +27950,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] + [CLSCompliant(false)] public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_framebuffer_object|VERSION_3_0] @@ -27430,8 +27961,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a renderbuffer object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] + [CLSCompliant(false)] public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -27443,6 +27974,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] + [CLSCompliant(false)] public static bool IsSampler(Int32 sampler) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -27453,8 +27985,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a sampler object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] + [CLSCompliant(false)] public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -27466,6 +27998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] + [CLSCompliant(false)] public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -27476,8 +28009,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a potential shader object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] + [CLSCompliant(false)] public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -27500,6 +28033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } /// [requires: v1.1] @@ -27510,8 +28044,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] + [CLSCompliant(false)] public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -27523,6 +28057,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] + [CLSCompliant(false)] public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_transform_feedback2|VERSION_4_0] @@ -27533,8 +28068,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a transform feedback object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] + [CLSCompliant(false)] public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -27546,6 +28081,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] + [CLSCompliant(false)] public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } /// [requires: v3.0 and ARB_vertex_array_object|VERSION_3_0] @@ -27556,8 +28092,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a vertex array object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] + [CLSCompliant(false)] public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -27580,6 +28116,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] + [CLSCompliant(false)] public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -27590,8 +28127,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the handle of the program object to be linked. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] + [CLSCompliant(false)] public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -27714,6 +28251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] first, Int32[] count, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -27740,6 +28278,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] + [CLSCompliant(false)] public static void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 first, ref Int32 count, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -27765,8 +28304,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size of the first and count /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] + [CLSCompliant(false)] public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* first, Int32* count, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_multi_draw_indirect|VERSION_4_3] @@ -27819,6 +28358,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct { throw new NotImplementedException(); } @@ -27847,6 +28387,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct { throw new NotImplementedException(); } @@ -27875,6 +28416,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] + [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct { throw new NotImplementedException(); } @@ -27936,6 +28478,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -27967,6 +28510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28000,6 +28544,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28033,6 +28578,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28066,6 +28612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28099,6 +28646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -28130,6 +28678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28163,6 +28712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28196,6 +28746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28229,6 +28780,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28261,8 +28813,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -28293,8 +28845,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28327,8 +28879,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28361,8 +28913,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28395,8 +28947,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size of the count and indices arrays. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] + [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount) where T3 : struct { throw new NotImplementedException(); } @@ -28435,6 +28987,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 drawcount, Int32[] basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -28471,6 +29024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28509,6 +29063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28547,6 +29102,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28585,6 +29141,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount, Int32[] basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28623,6 +29180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 drawcount, ref Int32 basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -28659,6 +29217,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28697,6 +29256,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28735,6 +29295,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28773,6 +29334,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount, ref Int32 basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28810,8 +29372,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indices, Int32 drawcount, Int32* basevertex) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_draw_elements_base_vertex|VERSION_3_2] @@ -28847,8 +29409,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28886,8 +29448,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28925,8 +29487,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -28964,8 +29526,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the base vertices are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] + [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 drawcount, Int32* basevertex) where T3 : struct { throw new NotImplementedException(); } @@ -29030,6 +29592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.All mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new NotImplementedException(); } @@ -29063,6 +29626,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.All mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new NotImplementedException(); } @@ -29096,6 +29660,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] + [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.All mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new NotImplementedException(); } @@ -29135,97 +29700,102 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1ui")] + [CLSCompliant(false)] public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1ui")] + [CLSCompliant(false)] public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2ui")] + [CLSCompliant(false)] public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2ui")] + [CLSCompliant(false)] public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3ui")] + [CLSCompliant(false)] public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3ui")] + [CLSCompliant(false)] public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4ui")] + [CLSCompliant(false)] public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4ui")] + [CLSCompliant(false)] public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4uiv")] + [CLSCompliant(false)] public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3ui")] + [CLSCompliant(false)] public static void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3ui")] + [CLSCompliant(false)] public static void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3uiv")] + [CLSCompliant(false)] public static unsafe void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3uiv")] + [CLSCompliant(false)] public static unsafe void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -29252,6 +29822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -29277,8 +29848,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string containing the label to assign to the object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -29321,6 +29892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -29344,6 +29916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -29367,6 +29940,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -29413,6 +29987,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] + [CLSCompliant(false)] public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, Single[] values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_tessellation_shader|VERSION_4_0] @@ -29434,6 +30009,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] + [CLSCompliant(false)] public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, ref Single values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_tessellation_shader|VERSION_4_0] @@ -29454,8 +30030,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the new values for the parameter given by pname. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] + [CLSCompliant(false)] public static unsafe void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, Single* values) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_tessellation_shader|VERSION_4_0] @@ -29557,6 +30133,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] + [CLSCompliant(false)] public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -29577,8 +30154,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] + [CLSCompliant(false)] public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -29621,6 +30198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] + [CLSCompliant(false)] public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.4] @@ -29641,8 +30219,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] + [CLSCompliant(false)] public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -29703,6 +30281,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] + [CLSCompliant(false)] public static void PrimitiveRestartIndex(Int32 index) { throw new NotImplementedException(); } /// [requires: v3.1] @@ -29713,8 +30292,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the value to be interpreted as the primitive restart index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] + [CLSCompliant(false)] public static void PrimitiveRestartIndex(UInt32 index) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -29741,6 +30320,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -29767,6 +30347,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -29795,6 +30376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -29823,6 +30405,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -29851,6 +30434,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -29878,8 +30462,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -29905,8 +30489,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -29934,8 +30518,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -29963,8 +30547,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] T2[,,] binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -29992,8 +30576,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of bytes contained in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] + [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute] ref T2 binary, Int32 length) where T2 : struct { throw new NotImplementedException(); } @@ -30017,6 +30601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_get_program_binary|VERSION_4_1] @@ -30037,8 +30622,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the new value of the parameter specified by pname for program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30078,6 +30663,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1d")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Double v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30116,8 +30702,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1d")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Double v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30157,6 +30743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30195,8 +30782,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30235,8 +30822,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30275,8 +30862,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30316,6 +30903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1f")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30354,8 +30942,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1f")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30395,6 +30983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30433,8 +31022,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30473,8 +31062,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30513,8 +31102,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30554,6 +31143,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1i")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30592,8 +31182,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1i")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30633,6 +31223,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] + [CLSCompliant(false)] public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30671,8 +31262,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30711,8 +31302,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30751,8 +31342,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30791,8 +31382,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1ui")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30831,8 +31422,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] + [CLSCompliant(false)] public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30871,8 +31462,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30912,6 +31503,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2d")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30950,8 +31542,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2d")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -30991,6 +31583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31030,6 +31623,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31068,8 +31662,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31108,8 +31702,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31148,8 +31742,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31188,8 +31782,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31229,6 +31823,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2f")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31267,8 +31862,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2f")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31308,6 +31903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31347,6 +31943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31385,8 +31982,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31425,8 +32022,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31465,8 +32062,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31505,8 +32102,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31546,6 +32143,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2i")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31584,8 +32182,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2i")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31625,6 +32223,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] + [CLSCompliant(false)] public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31663,8 +32262,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31703,8 +32302,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31743,8 +32342,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31783,8 +32382,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2ui")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31823,8 +32422,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31863,8 +32462,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] + [CLSCompliant(false)] public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31903,8 +32502,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31944,6 +32543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3d")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -31982,8 +32582,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3d")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32023,6 +32623,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32062,6 +32663,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32100,8 +32702,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32140,8 +32742,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32180,8 +32782,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32220,8 +32822,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32261,6 +32863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3f")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32299,8 +32902,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3f")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32340,6 +32943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32379,6 +32983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32417,8 +33022,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32457,8 +33062,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32497,8 +33102,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32537,8 +33142,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32578,6 +33183,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3i")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32616,8 +33222,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3i")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32657,6 +33263,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32696,6 +33303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32734,8 +33342,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32774,8 +33382,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32814,8 +33422,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32854,8 +33462,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32894,8 +33502,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3ui")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32934,8 +33542,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -32974,8 +33582,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] + [CLSCompliant(false)] public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33014,8 +33622,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33055,6 +33663,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4d")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33093,8 +33702,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4d")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33134,6 +33743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33173,6 +33783,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33211,8 +33822,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33251,8 +33862,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33291,8 +33902,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33331,8 +33942,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33372,6 +33983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4f")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33410,8 +34022,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4f")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33451,6 +34063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33490,6 +34103,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33528,8 +34142,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33568,8 +34182,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33608,8 +34222,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33648,8 +34262,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33689,6 +34303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4i")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33727,8 +34342,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4i")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33768,6 +34383,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33807,6 +34423,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33845,8 +34462,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33885,8 +34502,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33925,8 +34542,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -33965,8 +34582,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -34005,8 +34622,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4ui")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -34045,8 +34662,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -34085,8 +34702,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] + [CLSCompliant(false)] public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -34125,512 +34742,548 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] + [CLSCompliant(false)] public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] + [CLSCompliant(false)] public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_provoking_vertex|VERSION_3_2] @@ -34668,6 +35321,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: v4.3 and KHR_debug|VERSION_4_3] @@ -34693,8 +35347,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The a string containing the message to be sent to the debug output stream. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -34711,6 +35365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glQueryCounter")] + [CLSCompliant(false)] public static void QueryCounter(Int32 id, OpenTK.Graphics.OpenGL4.QueryCounterTarget target) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_timer_query|VERSION_3_3] @@ -34726,8 +35381,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the counter to query. target must be GL_TIMESTAMP. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glQueryCounter")] + [CLSCompliant(false)] public static void QueryCounter(UInt32 id, OpenTK.Graphics.OpenGL4.QueryCounterTarget target) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -34801,6 +35456,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -34834,6 +35490,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -34867,6 +35524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] + [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -35025,6 +35683,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] + [CLSCompliant(false)] public static void SampleMask(Int32 index, Int32 mask) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_texture_multisample|VERSION_3_2] @@ -35040,8 +35699,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the new value of the mask sub-word. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] + [CLSCompliant(false)] public static void SampleMask(UInt32 index, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35068,6 +35727,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35093,8 +35753,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35121,6 +35781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35146,8 +35807,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35173,8 +35834,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35200,8 +35861,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35228,6 +35889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35253,51 +35915,53 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, ref Int32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, ref Int32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] + [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, UInt32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, ref UInt32 param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] + [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, UInt32* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35324,6 +35988,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35349,8 +36014,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35376,8 +36041,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32[] param) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_sampler_objects|VERSION_3_3] @@ -35403,8 +36068,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32* param) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -35442,6 +36107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static void ScissorArray(Int32 first, Int32 count, Int32[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35463,6 +36129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static void ScissorArray(Int32 first, Int32 count, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35483,8 +36150,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static unsafe void ScissorArray(Int32 first, Int32 count, Int32* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35505,8 +36172,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static void ScissorArray(UInt32 first, Int32 count, Int32[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35527,8 +36194,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static void ScissorArray(UInt32 first, Int32 count, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35549,8 +36216,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] + [CLSCompliant(false)] public static unsafe void ScissorArray(UInt32 first, Int32 count, Int32* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35577,6 +36244,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexed")] + [CLSCompliant(false)] public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35602,8 +36270,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexed")] + [CLSCompliant(false)] public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35630,6 +36298,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static void ScissorIndexed(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35656,6 +36325,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static void ScissorIndexed(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35681,8 +36351,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static unsafe void ScissorIndexed(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35708,8 +36378,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static void ScissorIndexed(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35735,8 +36405,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static void ScissorIndexed(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -35762,27 +36432,28 @@ namespace OpenTK.Graphics.OpenGL4 /// For glScissorIndexedv, specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] + [CLSCompliant(false)] public static unsafe void ScissorIndexed(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3ui")] + [CLSCompliant(false)] public static void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3ui")] + [CLSCompliant(false)] public static void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3uiv")] + [CLSCompliant(false)] public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* color) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3uiv")] + [CLSCompliant(false)] public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* color) { throw new NotImplementedException(); } /// @@ -35875,6 +36546,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[] column) where T6 : struct where T7 : struct @@ -35924,6 +36596,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] row, [InAttribute, OutAttribute] T7[,] column) where T6 : struct where T7 : struct @@ -35973,6 +36646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] + [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct where T7 : struct @@ -36056,6 +36730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -36087,6 +36762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36120,6 +36796,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36153,6 +36830,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36186,6 +36864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36219,6 +36898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -36250,6 +36930,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36283,6 +36964,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36316,6 +36998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36349,6 +37032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36381,8 +37065,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -36413,8 +37097,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36447,8 +37131,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36481,8 +37165,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36515,8 +37199,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36549,8 +37233,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -36581,8 +37265,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36615,8 +37299,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36649,8 +37333,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36683,8 +37367,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36717,8 +37401,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -36749,8 +37433,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36783,8 +37467,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36817,8 +37501,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36851,8 +37535,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static void ShaderBinary(Int32 count, ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36885,8 +37569,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, IntPtr binary, Int32 length) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_ES2_compatibility|VERSION_4_1] @@ -36917,8 +37601,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36951,8 +37635,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -36985,8 +37669,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -37019,8 +37703,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the array whose address is given in binary. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] + [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length) where T3 : struct { throw new NotImplementedException(); } @@ -37049,6 +37733,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shader, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37075,6 +37760,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(Int32 shader, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37100,8 +37786,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static unsafe void ShaderSource(Int32 shader, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37127,8 +37813,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shader, Int32 count, String[] @string, Int32[] length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37154,8 +37840,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static void ShaderSource(UInt32 shader, Int32 count, String[] @string, ref Int32 length) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37181,8 +37867,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies an array of string lengths. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] + [CLSCompliant(false)] public static unsafe void ShaderSource(UInt32 shader, Int32 count, String[] @string, Int32* length) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_shader_storage_buffer_object|VERSION_4_3] @@ -37204,6 +37890,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_storage_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glShaderStorageBlockBinding")] + [CLSCompliant(false)] public static void ShaderStorageBlockBinding(Int32 program, Int32 storageBlockIndex, Int32 storageBlockBinding) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_shader_storage_buffer_object|VERSION_4_3] @@ -37224,8 +37911,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The index storage block binding to associate with the specified storage block. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_storage_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glShaderStorageBlockBinding")] + [CLSCompliant(false)] public static void ShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -37247,6 +37934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -37267,8 +37955,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] + [CLSCompliant(false)] public static void StencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37295,6 +37983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37320,8 +38009,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] + [CLSCompliant(false)] public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -37333,6 +38022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -37343,8 +38033,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] + [CLSCompliant(false)] public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37361,6 +38051,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, Int32 mask) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -37376,8 +38067,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] + [CLSCompliant(false)] public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, UInt32 mask) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -37446,6 +38137,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glTexBuffer")] + [CLSCompliant(false)] public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } /// [requires: v3.1] @@ -37466,8 +38158,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glTexBuffer")] + [CLSCompliant(false)] public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_texture_buffer_range|VERSION_4_3] @@ -37499,6 +38191,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] + [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_texture_buffer_range|VERSION_4_3] @@ -37529,84 +38222,88 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size of the range of the buffer's data store to attach. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] + [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1ui")] + [CLSCompliant(false)] public static void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1ui")] + [CLSCompliant(false)] public static void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2ui")] + [CLSCompliant(false)] public static void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2ui")] + [CLSCompliant(false)] public static void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3ui")] + [CLSCompliant(false)] public static void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3ui")] + [CLSCompliant(false)] public static void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4ui")] + [CLSCompliant(false)] public static void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4ui")] + [CLSCompliant(false)] public static void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* coords) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4uiv")] + [CLSCompliant(false)] public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* coords) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -37699,6 +38396,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] + [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T7[] pixels) where T7 : struct { throw new NotImplementedException(); } @@ -37747,6 +38445,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] + [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T7[,] pixels) where T7 : struct { throw new NotImplementedException(); } @@ -37795,6 +38494,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] + [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T7[,,] pixels) where T7 : struct { throw new NotImplementedException(); } @@ -37947,6 +38647,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -38000,6 +38701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -38053,6 +38755,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] + [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -38256,6 +38959,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -38314,6 +39018,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -38372,6 +39077,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] + [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct { throw new NotImplementedException(); } @@ -38526,6 +39232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -38554,8 +39261,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -38589,30 +39296,32 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] + [CLSCompliant(false)] public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, UInt32[] @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] + [CLSCompliant(false)] public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, ref UInt32 @params) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] + [CLSCompliant(false)] public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, UInt32* @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -38642,6 +39351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] @params) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -38670,8 +39380,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] + [CLSCompliant(false)] public static unsafe void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); } /// [requires: v4.2 and ARB_texture_storage|VERSION_4_2] @@ -38924,6 +39634,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] + [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -38967,6 +39678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] + [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -39010,6 +39722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] + [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct { throw new NotImplementedException(); } @@ -39157,6 +39870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -39210,6 +39924,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -39263,6 +39978,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] + [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct { throw new NotImplementedException(); } @@ -39440,6 +40156,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -39503,6 +40220,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -39566,6 +40284,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] + [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct { throw new NotImplementedException(); } @@ -39677,6 +40396,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_texture_view|VERSION_4_3", Version = "4.3", EntryPoint = "glTextureView")] + [CLSCompliant(false)] public static void TextureView(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 origtexture, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_texture_view|VERSION_4_3] @@ -39722,8 +40442,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of layers to include in the view. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_texture_view|VERSION_4_3", Version = "4.3", EntryPoint = "glTextureView")] + [CLSCompliant(false)] public static void TextureView(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -39750,6 +40470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(Int32 program, Int32 count, String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -39775,8 +40496,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] + [CLSCompliant(false)] public static void TransformFeedbackVaryings(UInt32 program, Int32 count, String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -39845,6 +40566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -39879,6 +40601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -39912,8 +40635,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -39982,6 +40705,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40016,6 +40740,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40049,8 +40774,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40119,6 +40844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40153,6 +40879,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40186,8 +40913,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -40221,8 +40948,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -40256,8 +40983,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -40291,8 +41018,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] + [CLSCompliant(false)] public static void Uniform1(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -40326,8 +41053,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] + [CLSCompliant(false)] public static unsafe void Uniform1(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -40396,6 +41123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -40430,6 +41158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -40463,8 +41192,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40533,6 +41262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40567,6 +41297,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40600,8 +41331,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40670,6 +41401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -40703,8 +41435,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -40738,8 +41470,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2ui")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -40773,8 +41505,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -40808,8 +41540,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] + [CLSCompliant(false)] public static void Uniform2(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -40843,8 +41575,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] + [CLSCompliant(false)] public static unsafe void Uniform2(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -40913,6 +41645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -40947,6 +41680,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -40980,8 +41714,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41050,6 +41784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41084,6 +41819,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41117,8 +41853,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41187,6 +41923,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41221,6 +41958,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41254,8 +41992,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -41289,8 +42027,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3ui")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -41324,8 +42062,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -41359,8 +42097,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] + [CLSCompliant(false)] public static void Uniform3(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -41394,8 +42132,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] + [CLSCompliant(false)] public static unsafe void Uniform3(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -41464,6 +42202,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -41498,6 +42237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] @@ -41531,8 +42271,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41601,6 +42341,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41635,6 +42376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41668,8 +42410,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Single* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41738,6 +42480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, Int32[] value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41772,6 +42515,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref Int32 value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -41805,8 +42549,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -41840,8 +42584,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4ui")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -41875,8 +42619,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, UInt32[] value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -41910,8 +42654,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] + [CLSCompliant(false)] public static void Uniform4(Int32 location, Int32 count, ref UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.0] @@ -41945,8 +42689,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector and matrix commands, specifies a pointer to an array of count values that will be used to update the specified uniform variable. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] + [CLSCompliant(false)] public static unsafe void Uniform4(Int32 location, Int32 count, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -41968,6 +42712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glUniformBlockBinding")] + [CLSCompliant(false)] public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new NotImplementedException(); } /// [requires: v3.1 and ARB_uniform_buffer_object|VERSION_3_1] @@ -41988,242 +42733,278 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the binding point to which to bind the uniform block with index uniformBlockIndex within program. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glUniformBlockBinding")] + [CLSCompliant(false)] public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] + [CLSCompliant(false)] public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] + [CLSCompliant(false)] public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] + [CLSCompliant(false)] public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] + [CLSCompliant(false)] public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] + [CLSCompliant(false)] public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Double[] value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, ref Double value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_gpu_shader_fp64|VERSION_4_0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Double* value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single[] value) { throw new NotImplementedException(); } /// [requires: v2.1] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] + [CLSCompliant(false)] public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, ref Single value) { throw new NotImplementedException(); } /// [requires: v2.1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] + [CLSCompliant(false)] public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single* value) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -42245,6 +43026,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, Int32[] indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -42266,6 +43048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, ref Int32 indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -42286,8 +43069,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array holding the indices to load into the shader subroutine variables. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, Int32* indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -42308,8 +43091,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array holding the indices to load into the shader subroutine variables. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, UInt32[] indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -42330,8 +43113,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array holding the indices to load into the shader subroutine variables. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, ref UInt32 indices) { throw new NotImplementedException(); } /// [requires: v4.0 and ARB_shader_subroutine|VERSION_4_0] @@ -42352,8 +43135,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array holding the indices to load into the shader subroutine variables. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] + [CLSCompliant(false)] public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, UInt32* indices) { throw new NotImplementedException(); } /// [requires: v1.5] @@ -42369,6 +43152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] + [CLSCompliant(false)] public static void UseProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42379,8 +43163,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the handle of the program object whose executables are to be used as part of current rendering state. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] + [CLSCompliant(false)] public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -42402,6 +43186,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glUseProgramStages")] + [CLSCompliant(false)] public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramStageMask stages, Int32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -42422,8 +43207,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the program object containing the shader executables to use in pipeline. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glUseProgramStages")] + [CLSCompliant(false)] public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramStageMask stages, UInt32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42435,6 +43220,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] + [CLSCompliant(false)] public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42445,8 +43231,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the handle of the program object to be validated. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] + [CLSCompliant(false)] public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -42458,6 +43244,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glValidateProgramPipeline")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_separate_shader_objects|VERSION_4_1] @@ -42468,8 +43255,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the name of a program pipeline object to validate. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glValidateProgramPipeline")] + [CLSCompliant(false)] public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42506,6 +43293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Double x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42541,8 +43329,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42578,8 +43366,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42615,8 +43403,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42653,6 +43441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42688,8 +43477,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42725,8 +43514,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42762,8 +43551,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42800,6 +43589,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] + [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, Int16 x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42835,8 +43625,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] + [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42872,8 +43662,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42909,8 +43699,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib1(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42947,6 +43737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2d")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -42982,8 +43773,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2d")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43020,6 +43811,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43056,6 +43848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43091,8 +43884,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43128,8 +43921,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43165,8 +43958,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43202,8 +43995,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43240,6 +44033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43275,8 +44069,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43313,6 +44107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43349,6 +44144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43384,8 +44180,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43421,8 +44217,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43458,8 +44254,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43495,8 +44291,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43533,6 +44329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2s")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43568,8 +44365,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2s")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43606,6 +44403,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43642,6 +44440,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static void VertexAttrib2(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43677,8 +44476,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43714,8 +44513,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43751,8 +44550,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static void VertexAttrib2(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43788,8 +44587,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib2(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43826,6 +44625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3d")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43861,8 +44661,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3d")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43899,6 +44699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43935,6 +44736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -43970,8 +44772,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44007,8 +44809,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44044,8 +44846,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44081,8 +44883,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44119,6 +44921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44154,8 +44957,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44192,6 +44995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44228,6 +45032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44263,8 +45068,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44300,8 +45105,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44337,8 +45142,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44374,8 +45179,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44412,6 +45217,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3s")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44447,8 +45253,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3s")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44485,6 +45291,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44521,6 +45328,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static void VertexAttrib3(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44556,8 +45364,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44593,8 +45401,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44630,8 +45438,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static void VertexAttrib3(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44667,8 +45475,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib3(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44704,8 +45512,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, SByte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44741,8 +45549,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref SByte v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44778,8 +45586,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, SByte* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44816,6 +45624,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4d")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44851,8 +45660,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4d")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44889,6 +45698,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44925,6 +45735,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44960,8 +45771,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -44997,8 +45808,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45034,8 +45845,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45071,8 +45882,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45109,6 +45920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45144,8 +45956,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45182,6 +45994,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45218,6 +46031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45253,8 +46067,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45290,8 +46104,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45327,8 +46141,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45364,8 +46178,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45402,6 +46216,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45438,6 +46253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45473,8 +46289,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45510,8 +46326,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45547,8 +46363,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45584,146 +46400,153 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, SByte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref SByte v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, SByte* v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static void VertexAttrib4N(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, UInt16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] + [CLSCompliant(false)] public static void VertexAttrib4N(UInt32 index, ref UInt16 v) { throw new NotImplementedException(); } /// [requires: v2.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4N(UInt32 index, UInt16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45760,6 +46583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4s")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45795,8 +46619,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4s")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45833,6 +46657,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45869,6 +46694,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45904,8 +46730,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45941,8 +46767,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -45978,8 +46804,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46015,8 +46841,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46053,6 +46879,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46089,6 +46916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static void VertexAttrib4(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46124,8 +46952,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46161,8 +46989,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46198,8 +47026,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46235,8 +47063,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46272,8 +47100,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46309,8 +47137,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46346,8 +47174,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46383,8 +47211,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, UInt16[] v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46420,8 +47248,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] + [CLSCompliant(false)] public static void VertexAttrib4(UInt32 index, ref UInt16 v) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -46457,8 +47285,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For the packed commands, specifies the new packed value to be used for the specified vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] + [CLSCompliant(false)] public static unsafe void VertexAttrib4(UInt32 index, UInt16* v) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -46475,6 +47303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribBinding")] + [CLSCompliant(false)] public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -46490,8 +47319,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The index of the vertex buffer binding with which to associate the generic vertex attribute. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribBinding")] + [CLSCompliant(false)] public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } /// [requires: v3.3] @@ -46508,6 +47337,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] + [CLSCompliant(false)] public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } /// [requires: v3.3] @@ -46523,8 +47353,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the number of instances that will pass between updates of the generic attribute at slot index. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] + [CLSCompliant(false)] public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -46556,6 +47386,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribFormat")] + [CLSCompliant(false)] public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -46586,640 +47417,680 @@ namespace OpenTK.Graphics.OpenGL4 /// The distance between elements within the buffer. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribFormat")] + [CLSCompliant(false)] public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] + [CLSCompliant(false)] public static void VertexAttribI1(Int32 index, Int32 x) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] + [CLSCompliant(false)] public static void VertexAttribI1(UInt32 index, Int32 x) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI1(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI1(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1ui")] + [CLSCompliant(false)] public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI1(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2i")] + [CLSCompliant(false)] public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2i")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static void VertexAttribI2(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static void VertexAttribI2(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI2(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI2(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2ui")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] + [CLSCompliant(false)] public static void VertexAttribI2(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI2(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3i")] + [CLSCompliant(false)] public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3i")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static void VertexAttribI3(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static void VertexAttribI3(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI3(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI3(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3ui")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] + [CLSCompliant(false)] public static void VertexAttribI3(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI3(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, SByte[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref SByte v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, SByte* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Int32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Int32* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Int16[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Int16 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Int16* v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static void VertexAttribI4(Int32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(Int32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, Byte[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref Byte v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, Byte* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ui")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt32[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref UInt32 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, UInt32* v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, UInt16[] v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] + [CLSCompliant(false)] public static void VertexAttribI4(UInt32 index, ref UInt16 v) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] + [CLSCompliant(false)] public static unsafe void VertexAttribI4(UInt32 index, UInt16* v) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribIFormat")] + [CLSCompliant(false)] public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribIFormat")] + [CLSCompliant(false)] public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, UInt32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.0] - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1d")] + [CLSCompliant(false)] public static void VertexAttribL1(Int32 index, Double x) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1d")] + [CLSCompliant(false)] public static void VertexAttribL1(UInt32 index, Double x) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL1(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2d")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2d")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static void VertexAttribL2(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL2(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static void VertexAttribL2(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL2(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3d")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3d")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static void VertexAttribL3(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL3(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static void VertexAttribL3(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL3(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4d")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4d")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static void VertexAttribL4(Int32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL4(Int32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, Double[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static void VertexAttribL4(UInt32 index, ref Double v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] + [CLSCompliant(false)] public static unsafe void VertexAttribL4(UInt32 index, Double* v) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribLFormat")] + [CLSCompliant(false)] public static void VertexAttribLFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribLFormat")] + [CLSCompliant(false)] public static void VertexAttribLFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, UInt32 relativeoffset) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_vertex_attrib_64bit|VERSION_4_1] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] + [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer) where T4 : struct { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1ui")] + [CLSCompliant(false)] public static void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1ui")] + [CLSCompliant(false)] public static void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2ui")] + [CLSCompliant(false)] public static void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2ui")] + [CLSCompliant(false)] public static void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3ui")] + [CLSCompliant(false)] public static void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3ui")] + [CLSCompliant(false)] public static void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4ui")] + [CLSCompliant(false)] public static void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4ui")] + [CLSCompliant(false)] public static void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4uiv")] + [CLSCompliant(false)] public static unsafe void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32* value) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -47256,6 +48127,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -47292,6 +48164,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -47330,6 +48203,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -47368,6 +48242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -47406,6 +48281,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -47443,8 +48319,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); } /// [requires: v2.0] @@ -47480,8 +48356,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -47519,8 +48395,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -47558,8 +48434,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer) where T5 : struct { throw new NotImplementedException(); } @@ -47597,8 +48473,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] + [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer) where T5 : struct { throw new NotImplementedException(); } @@ -47617,6 +48493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexBindingDivisor")] + [CLSCompliant(false)] public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } /// [requires: v4.3 and ARB_vertex_attrib_binding|VERSION_4_3] @@ -47632,65 +48509,68 @@ namespace OpenTK.Graphics.OpenGL4 /// The new value for the instance step rate to apply. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexBindingDivisor")] + [CLSCompliant(false)] public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2ui")] + [CLSCompliant(false)] public static void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2ui")] + [CLSCompliant(false)] public static void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2uiv")] + [CLSCompliant(false)] public static unsafe void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2uiv")] + [CLSCompliant(false)] public static unsafe void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3ui")] + [CLSCompliant(false)] public static void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3ui")] + [CLSCompliant(false)] public static void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3uiv")] + [CLSCompliant(false)] public static unsafe void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3uiv")] + [CLSCompliant(false)] public static unsafe void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4ui")] + [CLSCompliant(false)] public static void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4ui")] + [CLSCompliant(false)] public static void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4uiv")] + [CLSCompliant(false)] public static unsafe void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32* value) { throw new NotImplementedException(); } /// [requires: v3.3 and ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4uiv")] + [CLSCompliant(false)] public static unsafe void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32* value) { throw new NotImplementedException(); } /// [requires: v1.0] @@ -47728,6 +48608,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static void ViewportArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47749,6 +48630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static void ViewportArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47769,8 +48651,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static unsafe void ViewportArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47791,8 +48673,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static void ViewportArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47813,8 +48695,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static void ViewportArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47835,8 +48717,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] + [CLSCompliant(false)] public static unsafe void ViewportArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47863,6 +48745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedf")] + [CLSCompliant(false)] public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47888,8 +48771,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedf")] + [CLSCompliant(false)] public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47916,6 +48799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static void ViewportIndexed(Int32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47942,6 +48826,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static void ViewportIndexed(Int32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47967,8 +48852,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static unsafe void ViewportIndexed(Int32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -47994,8 +48879,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static void ViewportIndexed(UInt32 index, Single[] v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -48021,8 +48906,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static void ViewportIndexed(UInt32 index, ref Single v) { throw new NotImplementedException(); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -48048,8 +48933,8 @@ namespace OpenTK.Graphics.OpenGL4 /// For glViewportIndexedfv, specifies the address of an array containing the viewport parameters. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] + [CLSCompliant(false)] public static unsafe void ViewportIndexed(UInt32 index, Single* v) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -48071,6 +48956,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.WaitSyncStatus WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } /// [requires: v3.2 and ARB_sync|VERSION_3_2] @@ -48091,8 +48977,8 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] + [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.WaitSyncStatus WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } public static partial class Khr @@ -48127,6 +49013,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -48145,6 +49032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -48163,6 +49051,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct { throw new NotImplementedException(); } @@ -48219,6 +49108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48255,6 +49145,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48290,8 +49181,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48327,8 +49218,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48364,8 +49255,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48401,8 +49292,8 @@ namespace OpenTK.Graphics.OpenGL4 /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48439,6 +49330,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, Int32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48474,8 +49366,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a character array containing the message to insert. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48522,6 +49414,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48568,6 +49461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48613,8 +49507,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute] Int32* ids, [OutAttribute] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48660,8 +49554,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute] UInt32[] ids, [OutAttribute] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48707,8 +49601,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute] out UInt32 ids, [OutAttribute] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48754,8 +49648,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of an array of characters that will receive the messages. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute] UInt32* ids, [OutAttribute] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute] Int32* lengths, [OutAttribute] StringBuilder messageLog) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48787,6 +49681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48818,6 +49713,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48848,8 +49744,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48880,8 +49776,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48912,8 +49808,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48944,8 +49840,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48972,6 +49868,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -48998,6 +49895,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -49023,8 +49921,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -49051,6 +49949,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49079,6 +49978,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49106,8 +50006,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49136,6 +50036,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49164,6 +50065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49191,8 +50093,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49221,6 +50123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49249,6 +50152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49276,8 +50180,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49306,6 +50210,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49334,6 +50239,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49361,8 +50267,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string that will receive the object label. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) where T0 : struct { throw new NotImplementedException(); } @@ -49373,18 +50279,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct { throw new NotImplementedException(); } /// [requires: KHR_debug] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct { throw new NotImplementedException(); } @@ -49419,6 +50328,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -49444,8 +50354,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string containing the label to assign to the object. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -49488,6 +50398,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -49511,6 +50422,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -49534,6 +50446,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct { throw new NotImplementedException(); } @@ -49591,6 +50504,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } /// [requires: KHR_debug] @@ -49616,8 +50530,8 @@ namespace OpenTK.Graphics.OpenGL4 /// The a string containing the message to be sent to the debug output stream. /// /// - [System.CLSCompliant(false)] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } }